fixes
[wolnelektury.git] / src / catalogue / templates / catalogue / collection.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5 {% block titleextra %}{{ collection.title }}{% endblock %}
6
7 {% block bodyid %}collection{% endblock %}
8
9 {% block body %}
10   <h1>{{ collection.title }}</h1>
11
12   {{ collection.description|safe }}
13
14   {% plain_list collection.get_books by_author=True %}
15 {% endblock %}