some moving works
[audio.git] / apps / archive / templates / archive / base.html
1 {% load i18n %}
2 <!DOCTYPE html>
3 <html>
4 <head>
5     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6     <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css" />
7     <title>{% trans "Audiobook repository" %}</title>
8 </head>
9 <body>
10
11 <div id="repo-zones-nav">
12     <a {% if division = "new" %}class="active" {% endif %}href="{% url list_new %}">{% trans "New" %}</a>
13     <a {% if division = "unpublished" %}class="active" {% endif %}href="{% url list_unpublished %}">{% trans "Unpublished" %}</a>
14     <a {% if division = "published" %}class="active" {% endif %}href="{% url list_published %}">{% trans "Published" %}</a>
15     <a {% if division = "unmanaged" %}class="active" {% endif %}href="{% url list_unmanaged %}">{% trans "Archive" %}</a>
16     <div class='clr' ></div>
17 </div>
18
19 <div id="messages">
20 {% block messages %}{% endblock %}
21 </div>
22
23 <div id="content">
24 {% block content %}{% endblock %}
25 </div>
26
27 </body>
28 </html>