summaryrefslogtreecommitdiff
path: root/chimere/templates/base_user.html
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/templates/base_user.html')
-rw-r--r--chimere/templates/base_user.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/chimere/templates/base_user.html b/chimere/templates/base_user.html
new file mode 100644
index 0000000..73f22a5
--- /dev/null
+++ b/chimere/templates/base_user.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+{% load i18n %}
+{# to customize your base Chimère template add codes between the following blocks #}
+{# title of the map #}{% block title %}{% endblock %}
+{# 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 %}
+{# top of the page after the tabs #}{% block sidebar %}{% endblock %}
+{# main part of the page #}{% block content %}{% endblock %}
+{# bottom of the page before the footer #}{% block bottom %}{% endblock %}
+{# inside the footer - please leave bloc.super it shows the Chimère copyright #}{% block footer %}{{ block.super }}{% endblock %}