blob: 16676b9a6406a7e4583d9928cacb0d9e98b27d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!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>
|