|
@@ -1,36 +1,109 @@
|
|
|
-{% extends "admin/original_base.html" %}
|
|
|
-{% load i18n static jet_tags %}
|
|
|
-
|
|
|
-{% block extrastyle %}
|
|
|
- {{ block.super }}
|
|
|
- {% get_current_theme as THEME %}
|
|
|
- {% get_current_jet_version as JET_VERSION %}
|
|
|
- <link rel="stylesheet" type="text/css" href="{% static "jet/css/vendor.css" %}?v={{ JET_VERSION }}" />
|
|
|
- <link rel="stylesheet" type="text/css" href="{% static "jet/css/icons/style.css" %}?v={{ JET_VERSION }}" />
|
|
|
- <link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/base.css" %}?v={{ JET_VERSION }}" class="base-stylesheet" />
|
|
|
- <link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/select2.theme.css" %}?v={{ JET_VERSION }}" class="select2-stylesheet" />
|
|
|
- <link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/jquery-ui.theme.css" %}?v={{ JET_VERSION }}" class="jquery-ui-stylesheet" />
|
|
|
-{% endblock %}
|
|
|
-
|
|
|
-{% block extrahead %}
|
|
|
- {{ block.super }}
|
|
|
- <script type="text/javascript" charset="utf-8">
|
|
|
- var DATE_FORMAT = "{% get_date_format %}";
|
|
|
- var TIME_FORMAT = "{% get_time_format %}";
|
|
|
- var DATETIME_FORMAT = "{% get_datetime_format %}";
|
|
|
- </script>
|
|
|
- <script src="{% static "jet/js/build/bundle.min.js" %}"></script>
|
|
|
-
|
|
|
- {% jet_static_translation_urls as translation_urls %}
|
|
|
- {% for url in translation_urls %}
|
|
|
- <script src="{% static url %}"></script>
|
|
|
- {% endfor %}
|
|
|
-
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
|
|
|
-{% endblock %}
|
|
|
-
|
|
|
-{% block footer %}
|
|
|
- {{ block.super }}
|
|
|
+{% load i18n static jet_tags %}<!DOCTYPE html>
|
|
|
+{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
|
+{% get_current_theme as THEME %}
|
|
|
+{% get_current_jet_version as JET_VERSION %}
|
|
|
+{% block html %}<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
|
|
|
+<head>
|
|
|
+<title>{% block title %}{% endblock %}</title>
|
|
|
+<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
|
|
|
+<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />
|
|
|
+
|
|
|
+<link rel="stylesheet" type="text/css" href="{% static "jet/css/vendor.css" %}?v={{ JET_VERSION }}" />
|
|
|
+<link rel="stylesheet" type="text/css" href="{% static "jet/css/icons/style.css" %}?v={{ JET_VERSION }}" />
|
|
|
+<link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/base.css" %}?v={{ JET_VERSION }}" class="base-stylesheet" />
|
|
|
+<link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/select2.theme.css" %}?v={{ JET_VERSION }}" class="select2-stylesheet" />
|
|
|
+<link rel="stylesheet" type="text/css" href="{% static "jet/css/themes/"|add:THEME|add:"/jquery-ui.theme.css" %}?v={{ JET_VERSION }}" class="jquery-ui-stylesheet" />
|
|
|
+
|
|
|
+{% block extrastyle %}{% endblock %}
|
|
|
+{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
|
|
|
+
|
|
|
+<script type="text/javascript" charset="utf-8">
|
|
|
+ var DATE_FORMAT = "{% get_date_format %}";
|
|
|
+ var TIME_FORMAT = "{% get_time_format %}";
|
|
|
+ var DATETIME_FORMAT = "{% get_datetime_format %}";
|
|
|
+</script>
|
|
|
+<script type="text/javascript" src="{% url 'jet:jsi18n' %}"></script>
|
|
|
+<script src="{% static "jet/js/build/bundle.min.js" %}"></script>
|
|
|
+
|
|
|
+{% jet_static_translation_urls as translation_urls %}
|
|
|
+{% for url in translation_urls %}
|
|
|
+ <script src="{% static url %}"></script>
|
|
|
+{% endfor %}
|
|
|
+
|
|
|
+{% block extrahead %}{% endblock %}
|
|
|
+{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
|
|
|
+</head>
|
|
|
+{% load i18n %}
|
|
|
+
|
|
|
+<body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}"
|
|
|
+ data-admin-utc-offset="{% now "Z" %}">
|
|
|
+
|
|
|
+<!-- Container -->
|
|
|
+<div id="container">
|
|
|
+
|
|
|
+ {% if not is_popup %}
|
|
|
+ <!-- Header -->
|
|
|
+ <div id="header">
|
|
|
+ <div id="branding">
|
|
|
+ {% block branding %}{% endblock %}
|
|
|
+ </div>
|
|
|
+ {% block usertools %}
|
|
|
+ {% if has_permission %}
|
|
|
+ <div id="user-tools">
|
|
|
+ {% block welcome-msg %}
|
|
|
+ {% trans 'Welcome,' %}
|
|
|
+ <strong>{% firstof user.get_short_name user.get_username %}</strong>.
|
|
|
+ {% endblock %}
|
|
|
+ {% block userlinks %}
|
|
|
+ {% if site_url %}
|
|
|
+ <a href="{{ site_url }}">{% trans 'View site' %}</a> /
|
|
|
+ {% endif %}
|
|
|
+ {% if user.is_active and user.is_staff %}
|
|
|
+ {% url 'django-admindocs-docroot' as docsroot %}
|
|
|
+ {% if docsroot %}
|
|
|
+ <a href="{{ docsroot }}">{% trans 'Documentation' %}</a> /
|
|
|
+ {% endif %}
|
|
|
+ {% endif %}
|
|
|
+ {% if user.has_usable_password %}
|
|
|
+ <a href="{% url 'admin:password_change' %}">{% trans 'Change password' %}</a> /
|
|
|
+ {% endif %}
|
|
|
+ <a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a>
|
|
|
+ {% endblock %}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ {% endblock %}
|
|
|
+ </div>
|
|
|
+ <!-- END Header -->
|
|
|
+ {% block breadcrumbs %}
|
|
|
+ <div class="breadcrumbs">
|
|
|
+ <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
|
|
+ {% if title %} › {{ title }}{% endif %}
|
|
|
+ </div>
|
|
|
+ {% endblock %}
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {% block messages %}
|
|
|
+ {% if messages %}
|
|
|
+ <ul class="messagelist">{% for message in messages %}
|
|
|
+ <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message|capfirst }}</li>
|
|
|
+ {% endfor %}</ul>
|
|
|
+ {% endif %}
|
|
|
+ {% endblock messages %}
|
|
|
+
|
|
|
+ <!-- Content -->
|
|
|
+ <div id="content" class="{% block coltype %}colM{% endblock %}">
|
|
|
+ {% block pretitle %}{% endblock %}
|
|
|
+ {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
|
|
|
+ {% block content %}
|
|
|
+ {% block object-tools %}{% endblock %}
|
|
|
+ {{ content }}
|
|
|
+ {% endblock %}
|
|
|
+ {% block sidebar %}{% endblock %}
|
|
|
+ <br class="clear" />
|
|
|
+ </div>
|
|
|
+ <!-- END Content -->
|
|
|
+
|
|
|
+ {% block footer %}<div id="footer"></div>{% endblock %}
|
|
|
|
|
|
{% jet_delete_confirmation_context %}
|
|
|
|
|
@@ -288,8 +361,6 @@
|
|
|
|
|
|
{% get_themes as THEMES %}
|
|
|
{% if THEMES %}
|
|
|
- {% get_current_theme as THEME %}
|
|
|
- {% get_current_jet_version as JET_VERSION %}
|
|
|
<li class="user-tools-contrast-block theme-chooser">
|
|
|
<div class="user-tools-contrast-block-title">{% trans "current theme" %}</div>
|
|
|
<div class="user-tools-theme-link-container">
|
|
@@ -311,4 +382,8 @@
|
|
|
</div>
|
|
|
</li>
|
|
|
{% endif %}
|
|
|
-{% endblock %}
|
|
|
+</div>
|
|
|
+<!-- END Container -->
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>{% endblock %}
|