detail page getting shape
[wolnelektury.git] / wolnelektury / templates / catalogue / book_fragments.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block titleextra %}{% trans "Theme" %} {{ theme }} {% trans "in work " %} {{ book }}{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10     <h1>{% trans "Theme" %} {{ theme }} {% trans "in work " %} {{ book }} </h1>
11
12     {% autopaginate fragments 10 %}
13     <div id="books-list">
14         <ol>
15         {% for fragment in fragments %}
16             <li>{{ fragment.short_html }}</li>
17         {% endfor %}
18         </ol>
19         {% paginate %}
20     </div>
21     <div id="tags-list">
22         <div id="categories-list">
23             {% trans "See description" %} <a href="{{ book.get_absolute_url }}">{% trans "of the book "%} {{ book }}</a>
24         </div>
25         <div id="themes-list">
26         </div>
27         <div class="clearboth"></div>
28     </div>
29 {% endblock %}