1 {% load theming_tags admin_static %}
2 {% load url from future %}
3 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns=
"http://www.w3.org/1999/xhtml" lang=
"{{ LANGUAGE_CODE }}" xml:
lang=
"{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}
dir=
"rtl"{% endif %}
>
6 <title>{% block title %}{% endblock %}
</title>
7 <link rel=
"stylesheet" type=
"text/css" href=
"{% block stylesheet %}{% static "admin/css/base.css
" %}{% endblock %}" />
8 {% block extrastyle %}{% endblock %}
9 <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]-->
10 {% if LANGUAGE_BIDI %}
<link rel=
"stylesheet" type=
"text/css" href=
"{% block stylesheet_rtl %}{% static "admin/css/rtl.css
" %}{% endblock %}" />{% endif %}
11 {% render_theming_css %}
12 <script type=
"text/javascript">window.__admin_media_prefix__ =
"{% filter escapejs %}{% static "admin/
" %}{% endfilter %}";
</script>
13 {% block extrahead %}{% endblock %}
14 {% block blockbots %}
<meta name=
"robots" content=
"NONE,NOARCHIVE" />{% endblock %}
18 <body class=
"{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
27 {% block branding %}{% endblock %}
29 {% if user.is_active and user.is_staff %}
31 {% trans 'Welcome,' %}
32 <strong>{% filter force_escape %}{% firstof user.first_name user.username %}{% endfilter %}
</strong>.
34 {% url
"django-admindocs-docroot" as docsroot %}
36 <a href=
"{{ docsroot }}">{% trans 'Documentation' %}
</a> /
38 {% url
"admin:password_change" as password_change_url %}
39 {% if password_change_url %}
40 <a href=
"{{ password_change_url }}">
42 <a href=
"{{ root_path }}password_change/">
44 {% trans 'Change password' %}
</a> /
45 {% url
"admin:logout" as logout_url %}
47 <a href=
"{{ logout_url }}">
49 <a href=
"{{ root_path }}logout/">
51 {% trans 'Log out' %}
</a>
55 {% block nav-global %}{% endblock %}
58 {% block breadcrumbs %}
<div class=
"breadcrumbs"><a href=
"/">{% trans 'Home' %}
</a>{% if title %}
› {{ title }}{% endif %}
</div>{% endblock %}
62 <ul class=
"messagelist">{% for message in messages %}
63 <li{% if message.tags %}
class=
"{{ message.tags }}"{% endif %}
>{{ message }}
</li>
68 <div id=
"content" class=
"{% block coltype %}colM{% endblock %}">
69 {% block pretitle %}{% endblock %}
70 {% block content_title %}{% if title %}
<h1>{{ title }}
</h1>{% endif %}{% endblock %}
72 {% block object-tools %}{% endblock %}
75 {% block sidebar %}{% endblock %}
80 {% block footer %}
<div id=
"footer"></div>{% endblock %}
82 <!-- END Container -->