1 {% load i18n theming_tags idle %}
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>
13 {% block extrahead %}{% endblock %}
14 {% block blockbots %}
<meta name=
"robots" content=
"NONE,NOARCHIVE" />{% endblock %}
17 <body class=
"{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
27 {% block branding %}{% endblock %}
30 {% if user.is_active and user.is_staff %}
32 {% trans 'Welcome,' %}
33 <strong>{% filter force_escape %}{% firstof user.first_name user.username %}{% endfilter %}
</strong>.
35 {% url django-admindocs-docroot as docsroot %}
37 <a href=
"{{ docsroot }}">{% trans 'Documentation' %}
</a> /
40 <a href=
"/">Voir le site
</a> /
41 {% if can_change_password %}
42 {% url admin:password_change as password_change_url %}
43 {% if password_change_url %}
44 <a href=
"{{ password_change_url }}">
46 <a href=
"{{ root_path }}password_change/">
48 {% trans 'Change password' %}
</a> /
50 {% url admin:logout as logout_url %}
52 <a href=
"{{ logout_url }}">
54 <a href=
"{{ root_path }}logout/">
56 {% trans 'Log out' %}
</a>
60 {% block nav-global %}{% endblock %}
63 {% block breadcrumbs %}
<div class=
"breadcrumbs"><a href=
"/">{% trans 'Home' %}
</a>{% if title %}
› {{ title }}{% endif %}
</div>{% endblock %}
67 <ul class=
"messagelist">{% for message in messages %}
68 <li{% if message.tags %}
class=
"{{ message.tags }}"{% endif %}
>{{ message }}
</li>
73 <div id=
"content" class=
"{% block coltype %}colM{% endblock %}">
74 {% block pretitle %}{% endblock %}
75 {% block content_title %}{% if title %}
<h1>{{ title }}
</h1>{% endif %}{% endblock %}
77 {% block object-tools %}{% endblock %}
80 {% block sidebar %}{% endblock %}
85 {% block footer %}
<div id=
"footer"></div>{% endblock %}
87 <!-- END Container -->