Removed "Utwory składające się na ten utwór" header.
[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             <ol>
61             {% for book in book_children %}
62                 <li>{{ book.short_html }}</li>
63             {% endfor %}
64             </ol>
65         </div>
66         {% paginate %}
67         {% endif %}
68     
69     </div>
70         
71     <div id="tags-list">
72         <div id="book-info">
73             <h2>O utworze</h2>
74             <ul>
75                 <li>
76                     Autor: 
77                     {% for tag in categories.author %}
78                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
79                     {% endfor %}
80                 </li>
81                 <li>
82                     Epoka:
83                     {% for tag in categories.epoch %}
84                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
85                     {% endfor %}
86                 </li>
87                 <li>
88                     Rodzaj:
89                     {% for tag in categories.kind %}
90                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
91                     {% endfor %}
92                 </li>
93                 <li>
94                     Gatunek:
95                     {% for tag in categories.genre %}
96                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
97                     {% endfor %}
98                 </li>
99             </ul>
100         </div>
101         <div id="themes-list">
102             {% if categories.theme %}
103                 <h2>Motywy w utworze</h2>
104                 <ul>
105                 {% for theme in categories.theme %}
106                     <li>{{ theme }}</li>
107                 {% endfor %}
108                 </ul>
109             {% endif %}
110         </div>
111         <div class="clearboth"></div>
112     </div>
113 {% endblock %}