original_base.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {% load i18n admin_static %}<!DOCTYPE html>
  2. {% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
  3. <html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
  4. <head>
  5. <title>{% block title %}{% endblock %}</title>
  6. <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />
  7. {% block extrastyle %}{% endblock %}
  8. <!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]-->
  9. {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
  10. <script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";</script>
  11. <script type="text/javascript">window.__admin_utc_offset__ = "{% filter escapejs %}{% now "Z" %}{% endfilter %}";</script>
  12. {% block extrahead %}{% endblock %}
  13. {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
  14. </head>
  15. {% load i18n %}
  16. <body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
  17. <!-- Container -->
  18. <div id="container">
  19. {% if not is_popup %}
  20. <!-- Header -->
  21. <div id="header">
  22. <div id="branding">
  23. {% block branding %}{% endblock %}
  24. </div>
  25. {% block usertools %}
  26. {% if has_permission %}
  27. <div id="user-tools">
  28. {% block welcome-msg %}
  29. {% trans 'Welcome,' %}
  30. <strong>{% firstof user.get_short_name user.get_username %}</strong>.
  31. {% endblock %}
  32. {% block userlinks %}
  33. {% if site_url %}
  34. <a href="{{ site_url }}">{% trans 'View site' %}</a> /
  35. {% endif %}
  36. {% if user.is_active and user.is_staff %}
  37. {% url 'django-admindocs-docroot' as docsroot %}
  38. {% if docsroot %}
  39. <a href="{{ docsroot }}">{% trans 'Documentation' %}</a> /
  40. {% endif %}
  41. {% endif %}
  42. {% if user.has_usable_password %}
  43. <a href="{% url 'admin:password_change' %}">{% trans 'Change password' %}</a> /
  44. {% endif %}
  45. <a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a>
  46. {% endblock %}
  47. </div>
  48. {% endif %}
  49. {% endblock %}
  50. {% block nav-global %}{% endblock %}
  51. </div>
  52. <!-- END Header -->
  53. {% block breadcrumbs %}
  54. <div class="breadcrumbs">
  55. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  56. {% if title %} &rsaquo; {{ title }}{% endif %}
  57. </div>
  58. {% endblock %}
  59. {% endif %}
  60. {% block messages %}
  61. {% if messages %}
  62. <ul class="messagelist">{% for message in messages %}
  63. <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message|capfirst }}</li>
  64. {% endfor %}</ul>
  65. {% endif %}
  66. {% endblock messages %}
  67. <!-- Content -->
  68. <div id="content" class="{% block coltype %}colM{% endblock %}">
  69. {% block pretitle %}{% endblock %}
  70. {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
  71. {% block content %}
  72. {% block object-tools %}{% endblock %}
  73. {{ content }}
  74. {% endblock %}
  75. {% block sidebar %}{% endblock %}
  76. <br class="clear" />
  77. </div>
  78. <!-- END Content -->
  79. {% block footer %}<div id="footer"></div>{% endblock %}
  80. </div>
  81. <!-- END Container -->
  82. </body>
  83. </html>