fixes
[wolnelektury.git] / src / catalogue / templates / catalogue / collections.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5 {% block titleextra %}{% trans "Collections" %}{% endblock %}
6
7 {% block bodyid %}collections{% endblock %}
8
9 {% block body %}
10   <h1>{% trans "Collections" %}</h1>
11
12   {% for obj in best %}
13     {{ obj.box }}
14   {% endfor %}
15
16   <h2>{% trans "All collections" %}</h2>
17   {% plain_list objects %}
18 {% endblock %}