summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/base.html
blob: 60821dee6cf156e13ab0cd39ee204786931d9ce3 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{% load i18n %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
    <link rel="shortcut icon" href="{{STATIC_URL}}/media/images/favicon.png"/>
    <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
    </title>
    <script language="javascript" type="text/javascript">
        var url_path = "{{URL_PATH}}";
    </script>
    <script language="javascript" type="text/javascript" src="{{JQUERY_URL}}"></script>
    <script language="javascript" type="text/javascript" src="{{JQUERY_UI_URL}}jquery-ui.js"></script>
    <script language="javascript" type="text/javascript" src="{{JQUERY_UI_URL}}ui/i18n/jquery.ui.datepicker-{{COUNTRY}}.js"></script>
    <script language="javascript" type="text/javascript" src="{{STATIC_URL}}/js/ishtar.js"></script>
    <link type="text/css" href="{{JQUERY_UI_URL}}css/smoothness/jquery-ui.css" rel="stylesheet" />
    <link rel="stylesheet" href="{{STATIC_URL}}/media/style.css" />
    {% block extra_head %}
    {% endblock %}
</head>
<body>
    <div id="header">
        {% block header %}
        {% if user.is_authenticated %}
        {% trans "Logged in" %}: {{ user.username }}
        (<a href="{% url auth_logout %}">{% trans "Log out" %}</a> |
        <a href="{% url auth_password_change %}">{% trans "Change password" %}</a>)
        {% else %}
        <strong><a href="{% url auth_login %}">{% trans "Log in" %}</a></strong>
        {% endif %}
        {% if LANGUAGES|length > 1 %}
        <div id="language_form_div">
            <form action="/i18n/setlang/" method="post" id='language_form'>
                {% csrf_token %}
                <label for='language_selector'>{% trans "Lang" %}{% trans ":"%} </label>
                <select name="language" id='language_selector'>
                    <option value="">-------</option>
                {% for lang in LANGUAGES %}
                    <option value="{{ lang.0 }}"{% ifequal LANGUAGE_CODE lang.0 %} selected='selected'{% endifequal %}>{{ lang.1 }}</option>
                {% endfor %}
                </select>
            </form>
        </div>{% endif %}
        {% endblock %}
    </div>
    <div class="nav-button ui-state-default ui-corner-all" id="to_bottom_arrow">
        <span class="ui-icon ui-icon-circle-arrow-s"></span>
    </div>
    <div class="nav-button ui-state-default ui-corner-all" id="to_top_arrow">
        <span class="ui-icon ui-icon-circle-arrow-n"></span>
    </div>
    <div id="window"></div>
    <div id="logo">
{% if APP_NAME %}<p id="app_name">{{APP_NAME}}</p>{%endif%}
    </div>
    <div id="context_menu">
        {% block context %}{% if current_menu %}
        <form method="post" action="{% url update-current-item %}">
        <fieldset>
        <legend>{% trans "Default selected items"%}</legend>
        <table id='current_items'>
        {% for lbl, model_name, items in current_menu %}
            <tr>
                <td><label for="current_{{model_name}}">{{lbl}}</label></td>
                <td>
                  <select id='current_{{model_name}}'>
                    <option value=''>--</option>
                    {% for val, label, selected in items %}<option value='{{val}}'{%if selected%} selected="selected"{%endif%}>{{label}}</option>
                  {% endfor %}</select>
                </td>
            </tr>
        {% endfor %}
        </table>
        </fieldset>
        </form>
        {% endif %}{% endblock %}
    </div>
    <div id="main_menu">
    <ul>
      {% for section in MENU.childs %}
      {% if section.available %}<li id='section-{{forloop.counter}}'>{{section.label}}
      <ul>
        {% for menu_item in section.childs %}{%if menu_item.available%}
        {% if menu_item.childs %}<li id='section-{{forloop.parentloop.counter}}-{{forloop.counter}}'>{{menu_item.label}}
            <ul>
                {% for menu_subitem in menu_item.childs %}{%if menu_subitem.available%}
                <li id='section-{{forloop.parentloop.parentloop.counter}}-{{forloop.parentloop.counter}}-{{forloop.counter}}'{%ifequal menu_subitem.idx CURRENT_ACTION%} class='selected'{%endifequal%}><a href='{% url action menu_subitem.idx%}'>{{menu_subitem.label}}</a></li>
            {%endif%}{% endfor %}</ul></li>
        {%else%}
        <li{%ifequal menu_item.idx CURRENT_ACTION%} class='selected'{%endifequal%}><a href='{% url action menu_item.idx%}'>{{menu_item.label}}</a></li>
        {%endif%}{% endif %}{% endfor %}
      </ul>
      </li>{%endif%}
      {% endfor %}
    </ul>
    </div>
    <div id="content">
        {% block content %}{% endblock %}
    </div>

    <div id="footer">
        {% block footer %}
        {% endblock %}
    </div>
    <div id="progress">
        <div id='progress-content'>
        </div>
    </div>
</body>

</html>