diff options
-rw-r--r-- | templates/base.html | 1 | ||||
-rw-r--r-- | templates/base_user.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index b03563a..d8127cc 100644 --- a/templates/base.html +++ b/templates/base.html @@ -9,6 +9,7 @@ // --></script> {% block extra_head %}{{extra_head|safe}}{% endblock %} <link rel="stylesheet" href="{{ media_path }}styles.css" /> + {% block head %}{% endblock %} </head> <body> diff --git a/templates/base_user.html b/templates/base_user.html index 2255311..70f2142 100644 --- a/templates/base_user.html +++ b/templates/base_user.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% load i18n %} {# to customize your base Chimère template add codes between the following blocks #} +{# head of the document #}{% block head %}{% endblock %} {# top of the page before the tabs #}{% block top %}{% endblock %} {# message block displayed on the map #}{% block message_map %}{% endblock %} {# message block displayed on the edit pages #}{% block message_edit %}{% endblock %} |