Oddzielenie STATIC_URL od MEDIA_URL.
[wolnelektury.git] / wolnelektury / templates / catalogue / book_fragments.html
1 {% extends "base.html" %}
2 {% load catalogue_tags pagination_tags %}
3
4 {% block title %}Motyw {{ theme }} w utworze {{ book }} w WolneLektury.pl{% endblock %}
5
6 {% block bodyid %}tagged-object-list{% endblock %}
7
8 {% block body %}
9     <h1>Motyw {{ theme }} w utworze {{ book }}</h1>
10     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
11         <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{{ book.get_absolute_url }}">wróć do strony utworu</a></p>
12     </form>
13
14     {% autopaginate fragments 10 %}
15     <div id="books-list">
16         <ol>
17         {% for fragment in fragments %}
18             <li>{{ fragment.short_html }}</li>
19         {% endfor %}
20         </ol>
21         {% paginate %}
22     </div>
23     <div id="tags-list">
24         <div id="categories-list">
25             Zobacz opis <a href="{{ book.get_absolute_url }}">utworu {{ book }}</a>
26         </div>
27         <div id="themes-list">
28         </div>
29         <div class="clearboth"></div>
30     </div>
31     <div id="set-window">
32         <div class="header"><a href="#" class="jqmClose">Zamknij</a></div>
33         <div class="target">
34             <p><img src="/static/img/indicator.gif" alt="*"/> Ładowanie</p>
35         </div>
36     </div>
37 {% endblock %}