From d7f4dede2d05ee22bb4d743aef1586631ec35b48 Mon Sep 17 00:00:00 2001 From: etienne Date: Sun, 17 Jan 2010 19:03:44 +0000 Subject: Simplify the customization of templates - #69 git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@43 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864 --- templates/base_user.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 templates/base_user.html (limited to 'templates/base_user.html') 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 %} -- cgit v1.2.3