summaryrefslogtreecommitdiff
path: root/templates/base_user.html
diff options
context:
space:
mode:
authoretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-01-17 19:03:44 +0000
committeretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2010-01-17 19:03:44 +0000
commitd7f4dede2d05ee22bb4d743aef1586631ec35b48 (patch)
treef301567f21746d0cee82612fbae093d838e420f7 /templates/base_user.html
parentbc92084d0643db30904f327658b9eba46504db26 (diff)
downloadChimère-d7f4dede2d05ee22bb4d743aef1586631ec35b48.tar.bz2
Chimère-d7f4dede2d05ee22bb4d743aef1586631ec35b48.zip
Simplify the customization of templates - #69
git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@43 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864
Diffstat (limited to 'templates/base_user.html')
-rw-r--r--templates/base_user.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/base_user.html b/templates/base_user.html
new file mode 100644
index 0000000..2255311
--- /dev/null
+++ b/templates/base_user.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% load i18n %}
+{# to customize your base Chimère template add codes between the following blocks #}
+{# 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 %}