Merge branch 'master' of http://github.com/fnp/wolnelektury
[wolnelektury.git] / wolnelektury / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block title %}{{ book.title }} {% trans "on WolneLektury.pl" %}{% endblock %}
6
7 {% block bodyid %}book-detail{% endblock %}
8
9 {% block body %}
10     <h1>{{ book.title }}, {{ categories.author|join:", " }}</h1>
11     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
12         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
13     </form>
14     
15     <div id="books-list">
16         {% if extra_info.license %}
17         <p>{% trans "Work is licensed under " %}<a href="{{ extra_info.license }}">{{ extra_info.license_description }}</a>.</p>
18         {% endif %}
19         <p>{% trans "Based on" %}: {{ extra_info.source_name }}</p>
20         {% if book.has_description %}
21             <div id="description">
22                 {{ book.description|safe }}
23             </div>
24             <div id="toggle-description"><p>{% trans "Toggle description" %} ▲</p></div>
25         {% endif %}
26         <div id="formats">
27             <p class="change-sets">{% trans "Put a book" %} <span><a href="{% url catalogue.views.book_sets book.slug %}" class="jqm-trigger">{% trans "on the shelf!" %}</a></span></p>
28             <div class="clearboth"></div>
29             <div class="wrap">
30             {% if book.html_file %}
31                 <a href="{% url book_text book.slug %}">{% trans "Read online" %}</a>
32             {% endif %}
33             {% if book.pdf_file %}
34                 <a href="{{ book.pdf_file.url }}">{% trans "Download PDF" %}</a>
35             {% endif %}
36             {% if book.odt_file %}
37                 <a href="{{ book.odt_file.url }}">{% trans "Download ODT" %}</a>
38             {% endif %}
39             {% if book.txt_file %}
40                 <a href="{{ book.txt_file.url }}">{% trans "Download TXT" %}</a>
41             {% endif %}
42             {% if book.mp3_file %}
43                 <div id="czytamy-sluchajac-info">
44                     <a href="http://czytamysluchajac.pl/" id="czytamysluchajac-logo"><img src="/static/img/czytamysluchajac-logo-small.png" /></a>     
45                     <p>{% trans "Artist" %}: {{ book.get_extra_info_value.artist_name }}</p>
46                                         {% if book.get_extra_info_value.director_name %}
47                         <p>{% trans "Director" %}: {{ book.get_extra_info_value.director_name }}</p>
48                                         {% endif %}
49                 </div>
50             {% endif %}
51             {% if book.mp3_file %}<a href="{{ book.mp3_file.url }}">{% trans "Download MP3" %}</a>{% endif %}
52             {% if book.ogg_file %}<a href="{{ book.ogg_file.url }}">{% trans "Download Ogg Vorbis" %}</a>{% endif %}
53             {% if book.mp3_file %}
54             <object type="application/x-shockwave-flash" style="margin-top: 0.5em" data="/static/player.swf" width="426" height="20">
55                 <param name="movie" value="/static/player.swf" />
56                 <param name="bgcolor" value="#ffffff" />
57                 <param name="FlashVars" value="mp3={{ book.mp3_file.url }}&amp;width=426&amp;showvolume=1&amp;bgcolor1=eeeeee&amp;bgcolor2=eeeeee&amp;buttoncolor=666666" />
58             </object>
59             {% endif %}
60             </div>
61         </div>
62     
63         {% if book_children %}
64         {% autopaginate book_children 10 %}
65         <div id="book-children">
66             <ol>
67             {% for book in book_children %}
68                 <li>{{ book.short_html }}</li>
69             {% endfor %}
70             </ol>
71         </div>
72         {% paginate %}
73         {% endif %}
74     
75     </div>
76         
77     <div id="tags-list">
78         <div id="book-info">
79             <h2>{% trans "Details" %}</h2>
80             <ul>
81                 <li>
82                     {% trans "Author" %}: 
83                     {% for tag in categories.author %}
84                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
85                     {% endfor %}
86                 </li>
87                 <li>
88                     {% trans "Epoch" %}:
89                     {% for tag in categories.epoch %}
90                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
91                     {% endfor %}
92                 </li>
93                 <li>
94                     {% trans "Kind" %}:
95                     {% for tag in categories.kind %}
96                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
97                     {% endfor %}
98                 </li>
99                 <li>
100                     {% trans "Genre" %}:
101                     {% for tag in categories.genre %}
102                     <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
103                     {% endfor %}
104                 </li>
105             </ul>
106             <h2>{% trans "Other resources" %}</h2>
107             <ul>
108                 <li><a href="{{ extra_info.about }}">{% trans "Book on project's wiki" %}</a></li>
109                 <li><a href="{{ extra_info.source_url }}">{% trans "Book in CBN Polona" %}</a></li>
110                 {% if book.gazeta_link %}
111                 <li><a href="{{ book.gazeta_link }}">{% trans "Book description on Lektury.Gazeta.pl" %}</a></li>
112                 {% endif %}
113                 {% if book.wiki_link %}
114                 <li><a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a></li>
115                 {% endif %}
116             </ul>
117         </div>
118         <div id="themes-list">
119             <h2>{% trans "Work's themes " %}</h2>
120             <ul>
121             {% for theme in book_themes %}
122                 <li><a href="{% url book_fragments book.slug,theme.slug %}">{{ theme }} ({{ theme.count }})</a></li>
123             {% endfor %}
124             </ul>
125         </div>
126         <div class="clearboth"></div>
127     </div>
128     <div id="set-window">
129         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
130         <div class="target">
131             <p><img src="/static/img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
132         </div>
133     </div>
134 {% endblock %}