f1b97f43f7aca20b447097f7647e9d74cd3a1ef4
[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 initial_blocks=True %}
22
23     <h2>{% trans "Collections" %}</h2>
24     {% plain_list collections paged=False with_initials=False %}
25
26     <h2>{% trans "Gallery" %}</h2>
27     {% plain_list pictures by_author=True paged=False initial_blocks=True %}
28
29
30     </div>
31 {% endblock %}