workaround for django ticket 17111; cover in api fix
[wolnelektury.git] / wolnelektury / templates / catalogue / catalogue.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5
6 {% block titleextra %}{% trans "Catalogue" %}{% endblock %}
7
8 {% block bodyid %}catalogue-catalogue{% endblock %}
9
10 {% block body %}
11     <h1>{% trans "Catalogue" %}</h1>
12
13     <div class="normal-text catalogue-catalogue">
14
15     <p><a href="{% url reporting_catalogue_pdf %}">
16         {% trans "Download the catalogue in PDF format." %}
17     </a></p>
18
19     <h2 class="white-box">{% trans "Authors" %}<a name="autorzy"></a></h2>
20     <div class="white-box">{% tag_list categories.author %}</div>
21
22     <h2 class="white-box">{% trans "Kinds" %}<a name="rodzaje"></a></h2>
23     <div class="white-box">{% tag_list categories.kind %}</div>
24
25     <h2 class="white-box">{% trans "Genres" %}<a name="gatunki"></a></h2>
26     <div class="white-box">{% tag_list categories.genre %}</div>
27
28     <h2 class="white-box">{% trans "Epochs" %}<a name="epoki"></a></h2>
29     <div class="white-box">{% tag_list categories.epoch %}</div>
30
31     <h2 class="white-box">{% trans "Themes and topics" %}<a name="motywy"></a></h2>
32     <div class="white-box">{% tag_list fragment_tags %}</div>
33
34     </div>
35 {% endblock %}