Siobhan Tully | cf04fb6 | 2014-01-11 11:25:57 -0500 | [diff] [blame] | 1 | {% load admin_static %}<!DOCTYPE html> |
| 2 | <html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> |
| 3 | <head> |
| 4 | <title>{% block title %}{% endblock %}</title> |
| 5 | <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" /> |
| 6 | {% block extrastyle %}{% endblock %} |
| 7 | <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]--> |
| 8 | {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %} |
| 9 | <script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";</script> |
| 10 | {% block extrahead %}{% endblock %} |
| 11 | {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %} |
| 12 | </head> |
| 13 | {% load i18n %} |
| 14 | |
| 15 | <body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}"> |
| 16 | |
| 17 | <!-- Container --> |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | {% block messages %} |
| 23 | {% if messages %} |
| 24 | <ul class="messagelist">{% for message in messages %} |
| 25 | <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li> |
| 26 | {% endfor %}</ul> |
| 27 | {% endif %} |
| 28 | {% endblock messages %} |
| 29 | |
| 30 | |
| 31 | {% block pretitle %}{% endblock %} |
| 32 | {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %} |
| 33 | {% block content %} |
| 34 | {% block object-tools %}{% endblock %} |
| 35 | {{ content }} |
| 36 | {% endblock %} |
| 37 | {% block sidebar %}{% endblock %} |
| 38 | <br class="clear" /> |
| 39 | |
| 40 | |
| 41 | {% block footer %}<div id="footer"></div>{% endblock %} |
| 42 | |
| 43 | |
| 44 | </body> |
| 45 | </html> |