remove some old around-search stuff
[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     <div id="set-window">
30         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
31         <div class="target">
32             <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
33         </div>
34     </div>
35 {% endblock %}