diff --git a/happymailer/templates/admin/happymailer/templatemodel/base.html b/happymailer/templates/admin/happymailer/templatemodel/base.html index 99328e0..beadf4c 100644 --- a/happymailer/templates/admin/happymailer/templatemodel/base.html +++ b/happymailer/templates/admin/happymailer/templatemodel/base.html @@ -1,5 +1,5 @@ {% extends "admin/base_site.html" %} -{% load i18n admin_static admin_modify %} +{% load i18n static admin_modify %} {% load admin_urls %} {% block extrastyle %}{{ block.super }}{% endblock %} @@ -13,4 +13,4 @@ › {% block breadcrumbs_last %}{% endblock %} {% endblock %} -{% endif %} \ No newline at end of file +{% endif %} diff --git a/happymailer/templates/admin/happymailer/templatemodel/change_form.html b/happymailer/templates/admin/happymailer/templatemodel/change_form.html index fb1e15e..352aeff 100644 --- a/happymailer/templates/admin/happymailer/templatemodel/change_form.html +++ b/happymailer/templates/admin/happymailer/templatemodel/change_form.html @@ -1,5 +1,5 @@ {% extends "admin/change_form.html" %} -{% load i18n admin_urls admin_static admin_modify %} +{% load i18n admin_urls static admin_modify %} {% block content %}
diff --git a/setup.py b/setup.py index 93fff3a..e75fd75 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-happymailer', - version='0.2.1', + version='0.3.1', description='django email templates manager', author='Victor Kotcheruba', author_email='barbuzaster@gmail.com', @@ -11,7 +11,7 @@ include_package_data=True, packages=find_packages(exclude=['django_happymailer','dummy','dummy2']), install_requires=[ - 'django >= 2.0', + 'django >= 3.0', 'django-import-export >= 0.4.5', 'faker >= 0.8.6', 'html2text >= 2016.5.29',