assigning tickets, new ui
[redakcja.git] / apps / wiki / templates / wiki / base.html
1 {% load compressed i18n %}
2 {% load wiki %}
3 <!DOCTYPE html>
4 <html>
5 <head>
6     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
7     {% compressed_css 'listing' %}
8     <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css" />
9     <title>{% block title %}{% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
10 </head>
11 <body>
12
13 <div id="tabs-nav">
14
15     <img id="logo" src="{{ STATIC_URL }}img/wl-orange.png" />
16
17     <div id="tabs-nav-left">
18         {% main_tabs %}
19         <!--a {% ifequal active_tab "user" %}class="active" {% endifequal %}href="{% url wiki_user %}">{% trans "User" %}</a>
20         <a {% ifequal active_tab "all" %}class="active" {% endifequal %}href="{% url wiki_document_list %}">{% trans "All" %}</a>
21         <a {% ifequal active_tab "create" %}class="active" {% endifequal %}href="{% url wiki_create_missing %}">{% trans "Add" %}</a>
22         <a {% ifequal active_tab "upload" %}class="active" {% endifequal %}href="{% url wiki_upload %}">{% trans "Upload" %}</a-->
23     </div>
24
25     <span id="login-box">
26         {% include "registration/head_login.html" %}
27     </span>
28
29     <div class='clr' ></div>
30 </div>
31
32 <div id="content">
33
34 <div id="wiki_layout_left_column">
35         {% block leftcolumn %}
36         {% endblock leftcolumn %}
37 </div>
38 <div id="wiki_layout_right_column">
39         {% block rightcolumn %}
40         {% endblock rightcolumn %}
41 </div>
42
43 </div>
44
45 {% compressed_js 'listing' %}
46 {% block extrabody %}
47 {% endblock %}
48 </body>
49 </html>