Now search box is wider only on main page.
[wolnelektury.git] / wolnelektury / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load catalogue_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         <ol>
31             {# {% for tag in tags %} #}
32             {# <li class="category"><a href="{% catalogue_url tag %}">{{ tag }}</a> | <a href="{% catalogue_url tags -tag %}">x</a></li> #}
33             {# {% endfor %} #}
34             <li class="book-title">{{ book.title }} | <a href="{% url main_page %}">x</a></li>
35         </ol>
36     </form>
37     
38     <div id="books-list">
39         {% if book.has_description %}
40             <div id="description">
41                 {{ book.description|safe }}
42             </div>
43             <div id="toggle-description"><p>Zwiń opis ▲</p></div>
44         {% endif %}
45         <div id="formats">
46             <ul>
47             {% if book.pdf_file %}
48                 <li><a href="{{ book.pdf_file.url }}">Pobierz plik PDF</a></li>
49             {% endif %}
50             {% if book.odt_file %}
51                 <li><a href="{{ book.odt_file.url }}">Pobierz plik ODT</a></li>
52             {% endif %}
53             {% if book.html_file %}
54                 <li><a href="{{ book.html_file.url }}">Pobierz plik HTML</a></li>
55             {% endif %}
56             </ul>
57         </div>
58     
59         {% if book.children.all %}
60         <div id="book-children">
61             <h2>Utwory składające się na ten utwór:</h2>
62             {% for book in book.children.all %}
63                 <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>
64             {% endfor %}
65         </div>
66         {% endif %}
67     
68     </div>
69         
70     <div id="tags-list">
71         <div id="book-info">
72             <h2>O utworze</h2>
73             <ul>
74                 <li>
75                     Autor: 
76                     {% for tag in categories.author %}
77                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
78                     {% endfor %}
79                 </li>
80                 <li>
81                     Epoka:
82                     {% for tag in categories.epoch %}
83                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
84                     {% endfor %}
85                 </li>
86                 <li>
87                     Rodzaj:
88                     {% for tag in categories.kind %}
89                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
90                     {% endfor %}
91                 </li>
92                 <li>
93                     Gatunek:
94                     {% for tag in categories.genre %}
95                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
96                     {% endfor %}
97                 </li>
98             </ul>
99         </div>
100         <div id="themes-list">
101             {% if categories.theme %}
102                 <h2>Motywy w utworze</h2>
103                 <ul>
104                 {% for theme in categories.theme %}
105                     <li>{{ theme }}</li>
106                 {% endfor %}
107                 </ul>
108             {% endif %}
109         </div>
110     </div>
111 {% endblock %}