Generally working version.
[wolnelektury.git] / src / catalogue / 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 "All works" %}</h1>
12
13
14     <div class="normal-text catalogue-catalogue">
15
16     <p><a href="{% url 'reporting_catalogue_pdf' %}">
17         {% trans "Download the catalogue in PDF format." %}
18     </a></p>
19
20     <h2>{% trans "Literature" %}</h2>
21     {% plain_list books by_author=True paged=False %}
22
23     <h2>{% trans "Collections" %}</h2>
24     {% plain_list collections paged=False %}
25
26     <h2>{% trans "Gallery" %}</h2>
27     {% plain_list pictures by_author=True paged=False %}
28
29
30     </div>
31 {% endblock %}