1 {% load theming_tags %}
2 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml" lang=
"{{ LANGUAGE_CODE }}" xml:
lang=
"{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}
dir=
"rtl"{% endif %}
>
5 <title>{% block title %}{% endblock %}
</title>
6 <link rel=
"stylesheet" type=
"text/css" href=
"{% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/base.css{% endblock %}" />
7 {% block extrastyle %}{% endblock %}
8 <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% load adminmedia %}{% admin_media_prefix %}css/ie.css{% endblock %}" /><![endif]-->
9 {% if LANGUAGE_BIDI %}
<link rel=
"stylesheet" type=
"text/css" href=
"{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %}
10 {% render_theming_css %}
11 <script type=
"text/javascript">window.__admin_media_prefix__ =
"{% filter escapejs %}{% admin_media_prefix %}{% endfilter %}";
</script>
12 {% block extrahead %}{% endblock %}
13 {% block blockbots %}
<meta name=
"robots" content=
"NONE,NOARCHIVE" />{% endblock %}
17 <body class=
"{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
25 {% block branding %}{% endblock %}
28 {% if user.is_active and user.is_staff %}
30 {% trans 'Welcome,' %}
31 <strong>{% filter force_escape %}{% firstof user.first_name user.username %}{% endfilter %}
</strong>.
33 {% url django-admindocs-docroot as docsroot %}
35 <a href=
"{{ docsroot }}">{% trans 'Documentation' %}
</a> /
38 <a href=
"/">Voir le site
</a> /
40 {% url admin:password_change as password_change_url %}
41 {% if password_change_url %}
42 <a href=
"{{ password_change_url }}">
44 <a href=
"{{ root_path }}password_change/">
46 {% trans 'Change password' %}
</a> /
47 {% url admin:logout as logout_url %}
49 <a href=
"{{ logout_url }}">
51 <a href=
"{{ root_path }}logout/">
53 {% trans 'Log out' %}
</a>
57 {% block nav-global %}{% endblock %}
60 {% block breadcrumbs %}
<div class=
"breadcrumbs"><a href=
"/">{% trans 'Home' %}
</a>{% if title %}
› {{ title }}{% endif %}
</div>{% endblock %}
64 <ul class=
"messagelist">{% for message in messages %}
65 <li{% if message.tags %}
class=
"{{ message.tags }}"{% endif %}
>{{ message }}
</li>
70 <div id=
"content" class=
"{% block coltype %}colM{% endblock %}">
71 {% block pretitle %}{% endblock %}
72 {% block content_title %}{% if title %}
<h1>{{ title }}
</h1>{% endif %}{% endblock %}
74 {% block object-tools %}{% endblock %}
77 {% block sidebar %}{% endblock %}
82 {% block footer %}
<div id=
"footer"></div>{% endblock %}
84 <!-- END Container -->