diff options
Diffstat (limited to 'lib/grappelli/templates/admin/_grappelli/base.html')
-rw-r--r-- | lib/grappelli/templates/admin/_grappelli/base.html | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/lib/grappelli/templates/admin/_grappelli/base.html b/lib/grappelli/templates/admin/_grappelli/base.html deleted file mode 100644 index 16676b9..0000000 --- a/lib/grappelli/templates/admin/_grappelli/base.html +++ /dev/null @@ -1,78 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> -<head> - <title>{% block title %}{% endblock %}</title> - {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %} - - <!-- LOADING --> - {% load adminmedia i18n grp_tags %} - - <!-- STYLESHEETS --> - {% block stylesheets %} - <link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/base.css" /> - {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %} - <link rel="stylesheet" href="{% admin_media_prefix %}jquery/ui/css/custom-theme/jquery-ui-1.8.custom.css" type="text/css" media="screen" title="no title" charset="utf-8"> - <link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/jquery-ui-grappelli-extensions.css" /> - {% endblock %} - {% block extrastyle %}{% endblock %} - - <!-- JAVASCRIPTS --> - {% block javascripts %} - <script type="text/javascript"> - // GLOBALS - var ADMIN_URL = "{% url admin:index %}",{# ugly hack to prevent tests from failing #} - MODEL_URL_ARRAY = {% get_content_types %}, - DATE_FORMAT = "{% get_date_format %}", - TIME_FORMAT = "{% get_time_format %}", - DATETIME_FORMAT = "{% get_datetime_format %}"; - </script> - <script type="text/javascript" src="{% admin_media_prefix %}jquery/jquery-1.4.2.min.js"></script> - <script type="text/javascript" src="{% admin_media_prefix %}jquery/ui/js/jquery-ui-1.8.custom.min.js"></script> - <script type="text/javascript" src="{% admin_media_prefix %}js/grappelli.init.js"></script> - <script type="text/javascript" src="{% admin_media_prefix %}js/grappelli.timepicker.js"></script> - <script type="text/javascript" src="{% admin_media_prefix %}js/grappelli.RelatedObjectLookups.js"></script> - <script type="text/javascript" src="{% admin_media_prefix %}js/grappelli.min.js"></script> - {% endblock %} - - {% block extrahead %}{% endblock %} -</head> -<body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}"> - <div id="container"> - - <!-- HEADER --> - {% if not is_popup %} - {% include "admin/includes_grappelli/header.html" %} - <!-- BREADCRUMBS --> - {% block breadcrumbs %} - <div id="breadcrumbs"><a href="/">{% trans 'Home' %}</a>{% if title %} › {{ title }}{% endif %}</div> - {% endblock %} - {% endif %} - - <!-- MESSAGES --> - {% if messages %} - <ul class="messagelist"> - {% for message in messages %} - <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li> - {% endfor %} - </ul> - {% endif %} - - <!-- CONTENT --> - <div id="content" class="{% block content-class %}{% endblock %}"> - {% block pretitle %}{% endblock %} - {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %} - {% block object-tools %}{% endblock %} - {% block content %} - {{ content }} - {% block filters %}{% endblock %} - {% endblock %} - <br class="clear" /> - </div> - - <!-- FOOTER --> - {% block footer %}<div id="footer"></div>{% endblock %} - - </div> -</body> -</html> - |