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