summaryrefslogtreecommitdiff
path: root/templates/base_user.html
blob: 70f2142813c569c0548f1577782aa57a4ab405b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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 %}
{# 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 %}