diff --git a/fet2020/templates/404.html b/fet2020/templates/404.html index 22d56ad1..e2c7e929 100644 --- a/fet2020/templates/404.html +++ b/fet2020/templates/404.html @@ -18,4 +18,4 @@ -{% endblock %} +{% endblock content %} diff --git a/fet2020/templates/admin/base.html b/fet2020/templates/admin/base.html index 6262be3c..5a57f38c 100644 --- a/fet2020/templates/admin/base.html +++ b/fet2020/templates/admin/base.html @@ -1,10 +1,9 @@ {% extends "admin/base.html" %} -{% load i18n admin_urls %} -{% load static %} +{% load admin_urls i18n static %} {% block extrahead %} -{% endblock %} +{% endblock extrahead %} {% block usertools %} {% if has_permission %} @@ -12,14 +11,14 @@ {% block welcome-msg %} {% translate 'Welcome,' %} {% firstof user.get_short_name user.get_username %}. - {% endblock %} + {% endblock welcome-msg %} {% block userlinks %} {% if site_url %} Zurück zur FET Homepage {% endif %} {% translate 'Log out' %} - {% endblock %} + {% endblock userlinks %} {% endif %} -{% endblock %} +{% endblock usertools %} diff --git a/fet2020/templates/admin/base_site.html b/fet2020/templates/admin/base_site.html index c7b85356..dd7a13db 100644 --- a/fet2020/templates/admin/base_site.html +++ b/fet2020/templates/admin/base_site.html @@ -1,3 +1,3 @@ {% extends "admin/base_site.html" %} -{% block title %}{{ site_title }}: {{ title }} {% endblock %} +{% block title %}{{ site_title }}: {{ title }}{% endblock %} diff --git a/fet2020/templates/admin/change_form.html b/fet2020/templates/admin/change_form.html index 6769f39c..bb75124d 100644 --- a/fet2020/templates/admin/change_form.html +++ b/fet2020/templates/admin/change_form.html @@ -1,6 +1,6 @@ {% extends "admin/change_form.html" %} -{% load i18n admin_urls %} +{% load admin_urls i18n %} {% block form_top %} {% if help_text %}

{{ help_text }}

{% endif %} -{% endblock %} +{% endblock form_top %} diff --git a/fet2020/templates/admin/submit_line.html b/fet2020/templates/admin/submit_line.html index 1549624f..ec1e5bda 100644 --- a/fet2020/templates/admin/submit_line.html +++ b/fet2020/templates/admin/submit_line.html @@ -1,5 +1,5 @@ {% extends "admin/submit_line.html" %} -{% load i18n admin_urls %} +{% load admin_urls i18n %} {% block submit-row %} {% if not show_close %} @@ -8,4 +8,4 @@ {% endif %} {% if generate_pdf %}{% endif %} {{ block.super }} -{% endblock %} +{% endblock submit-row %} diff --git a/fet2020/templates/authentications/change_password.html b/fet2020/templates/authentications/change_password.html index b60cd7bd..1d9fd004 100644 --- a/fet2020/templates/authentications/change_password.html +++ b/fet2020/templates/authentications/change_password.html @@ -26,4 +26,4 @@ -{% endblock %} +{% endblock content %} diff --git a/fet2020/templates/authentications/change_password_done.html b/fet2020/templates/authentications/change_password_done.html index fc349959..6c4ad377 100644 --- a/fet2020/templates/authentications/change_password_done.html +++ b/fet2020/templates/authentications/change_password_done.html @@ -12,4 +12,4 @@ -{% endblock %} +{% endblock content %} diff --git a/fet2020/templates/authentications/login.html b/fet2020/templates/authentications/login.html index df9b14b2..956c175a 100644 --- a/fet2020/templates/authentications/login.html +++ b/fet2020/templates/authentications/login.html @@ -28,4 +28,4 @@ -{% endblock %} +{% endblock content %} diff --git a/fet2020/templates/base.html b/fet2020/templates/base.html index c77a7ee1..3eef34f7 100644 --- a/fet2020/templates/base.html +++ b/fet2020/templates/base.html @@ -1,6 +1,4 @@ -{% load flatpages %} -{% load static %} -{% load version %} +{% load flatpages static version %} @@ -50,9 +48,9 @@ {% block galleryheader %} - {% endblock %} + {% endblock galleryheader %} {% block extraheader %} - {% endblock %} + {% endblock extraheader %} @@ -203,7 +201,7 @@ {% block content %} - {% endblock %} + {% endblock content %}