Blame view

templates/base.html 3.25 KB
janek37 authored
1
2
3
4
5
6
7
8
9
10
{% load url from future %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml" xml:lang="pl" lang="pl">
<head>
<title>{% block title %}{% endblock %}</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="{{ MEDIA_URL }}js/lib/jquery-1.7.1.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/lib/jquery.json-2.2.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/lib/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/lib/jquery.ui.datepicker-pl.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/base-layout.js"></script>
janek37 authored
11
<script type="text/javascript" src="{{ MEDIA_URL }}js/common.js"></script>
janek37 authored
12
13
14
15
16
17
{% if paginer %}
  <script type="text/javascript" src="{{ MEDIA_URL }}js/paginer.js"></script>
{% endif %}
{% load script json %}
{% if js_vars %}
  {% script %}
janek37 authored
18
    var $dj = {};
janek37 authored
19
    {% for name,var in js_vars.iteritems %}
janek37 authored
20
      $dj.{{ name }} = {{ var|jsonify }};
janek37 authored
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
79
80
81
82
83
84
85
86
87
88
    {% endfor %}
  {% endscript %}
{% endif %}
<link rel="stylesheet" href="{{ MEDIA_URL }}css/lib/smoothness/jquery-ui-1.8.21.custom.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{{ MEDIA_URL }}css/general.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{{ MEDIA_URL }}css/inflection_table.css" type="text/css" media="screen" charset="utf-8" />
{% block extrahead %}{% endblock %}
</head>
{% load i18n %}

<body>

<!-- Container -->
<!--div id="container"-->

    <!-- Header -->
    <div id="header">
        <div id="branding">
        {% block branding %}{% endblock %}
        </div>
        {% if user.is_active %}
        <div id="user-tools">
            {# if debug #}
              <span id="show-debug">debug</span>
            {# endif #}
            {% trans 'Welcome,' %}
            <strong>{% filter force_escape %}{% firstof user.first_name user.username %}{% endfilter %}</strong>.
            {% block userlinks %}
                <a href="{% url 'settings' %}">
                Ustawienia</a> /
                <a href="{% url 'auth_logout' %}">
                {% trans 'Log out' %}</a>
            {% endblock %}
        </div>
        {% endif %}
        {% include 'main_menu.html' %}
        {% block nav-global %}{% endblock %}

        {% if messages %}
        <ul class="messagelist">{% for message in messages %}
          <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
        {% endfor %}</ul>
        {% endif %}
    </div>
    <!-- END Header -->
    <!-- Content -->
    <div id="content">
        {% block pretitle %}{% endblock %}
        {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
        {% block content %}
        {% block object-tools %}{% endblock %}
        {{ content }}
        {% endblock %}
        {% block sidebar %}{% endblock %}
    </div>
    <!-- END Content -->

    {% block footer %}<div id="footer"></div>{% endblock %}
    {% block modal_elements %}{% endblock %}
    {# if debug #}
      <iframe id="debug">
      </iframe>
    {# endif #}
<!--/div-->
<!-- END Container -->

</body>
</html>