Changed rendering of children book list in complex books to match rendering of books...
[wolnelektury.git] / wolnelektury / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load catalogue_tags pagination_tags %}
3
4 {% block title %}Lektura {{ book.title }} w WolneLektury.pl{% endblock %}
5
6 {% block bodyid %}book-detail{% endblock %}
7
8 {% block extrahead %}
9     <script type="text/javascript">
10         $(function() {
11             $('#toggle-description').hover(
12                 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
13                 function() { $(this).css({background: '#EEE'}); }
14             ).click(function() {
15                 if ($('#description').hasClass('hidden')) {
16                     $('#description').slideDown('fast').removeClass('hidden');
17                     $('p', this).html('Zwiń opis ▲');
18                 } else {
19                     $('#description').slideUp('fast').addClass('hidden');
20                     $('p', this).html('Rozwiń opis ▼');
21                 }
22             });
23         });
24     </script>
25 {% endblock %}
26
27 {% block body %}
28     <h1>{{ book.title }}, {{ categories.author|join:", " }}</h1>
29     <form action="{% url main_page %}" method="get" accept-charset="utf-8" id="search-form">
30         <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url main_page %}">wróć do strony głównej</a></p>
31     </form>
32     
33     <div id="books-list">
34         {% if book.has_description %}
35             <div id="description">
36                 {{ book.description|safe }}
37             </div>
38             <div id="toggle-description"><p>Zwiń opis ▲</p></div>
39         {% endif %}
40         <div id="formats">
41             <ul>
42             {% if book.html_file %}
43                 <li><a href="{% url book_text book.slug %}">Czytaj online</a></li>
44             {% endif %}
45             {% if book.pdf_file %}
46                 <li><a href="{{ book.pdf_file.url }}">Pobierz plik PDF</a></li>
47             {% endif %}
48             {% if book.odt_file %}
49                 <li><a href="{{ book.odt_file.url }}">Pobierz plik ODT</a></li>
50             {% endif %}
51             {% if book.txt_file %}
52                 <li><a href="{{ book.txt_file.url }}">Pobierz plik TXT</a></li>
53             {% endif %}
54             </ul>
55         </div>
56     
57         {% if book_children %}
58         {% autopaginate book_children 10 %}
59         <div id="book-children">
60             <h2>Utwory składające się na ten utwór:</h2>
61             <ol>
62             {% for book in book_children %}
63                 <li>{{ book.short_html }}</li>
64             {% endfor %}
65             </ol>
66         </div>
67         {% paginate %}
68         {% endif %}
69     
70     </div>
71         
72     <div id="tags-list">
73         <div id="book-info">
74             <h2>O utworze</h2>
75             <ul>
76                 <li>
77                     Autor: 
78                     {% for tag in categories.author %}
79                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
80                     {% endfor %}
81                 </li>
82                 <li>
83                     Epoka:
84                     {% for tag in categories.epoch %}
85                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
86                     {% endfor %}
87                 </li>
88                 <li>
89                     Rodzaj:
90                     {% for tag in categories.kind %}
91                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
92                     {% endfor %}
93                 </li>
94                 <li>
95                     Gatunek:
96                     {% for tag in categories.genre %}
97                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
98                     {% endfor %}
99                 </li>
100             </ul>
101         </div>
102         <div id="themes-list">
103             {% if categories.theme %}
104                 <h2>Motywy w utworze</h2>
105                 <ul>
106                 {% for theme in categories.theme %}
107                     <li>{{ theme }}</li>
108                 {% endfor %}
109                 </ul>
110             {% endif %}
111         </div>
112         <div class="clearboth"></div>
113     </div>
114 {% endblock %}