Merge branch 'pretty' of github.com:fnp/wolnelektury into pretty
[wolnelektury.git] / wolnelektury / templates / catalogue / book_wide.html
1 {% extends "catalogue/book_short.html" %}
2 {% load i18n %}
3
4 {% block box-class %}book-wide-box{% endblock %}
5
6 {% block right-column %}
7 <div class="right-column">
8   <blockquote id="quote" class="cite-body">
9     {% block quote %}
10     <div>Ten, który walczy z potworami powinien zadbać, by sam nie stał się potworem. 
11     Gdy długo spoglądamy w otchłań, otchłań spogląda również w nas.</div>
12     {% endblock %}
13   </blockquote>
14
15   <div class="other-tools">
16     <h2 class="mono">{% trans "See" %}</h2>
17     <ul class="inline-items">
18       {% if extra_info.source_url %}
19       <li><a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}</li>
20       {% endif %}
21       {% if extra_info.about and not hide_about %}
22       <li>{% trans "Book on" %} <a href="{{ extra_info.about }}">{% trans "Editor's Platform" %}</a></li>
23       {% endif %}
24       {% if book.gazeta_link %}
25       <li><a href="{{ book.gazeta_link }}">{% trans "Book description on Lektury.Gazeta.pl" %}</a></li>
26       {% endif %}
27       {% if book.wiki_link %}
28       <li><a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a></li>
29       {% endif %}
30     </ul>
31   </div>
32   <div class="other-download">
33     <h2 class="mono">{% trans "Download" %}</h2>
34     <ul class="inline-items">
35       <li>
36         {% if related.media.mp3 or related.media.ogg %}
37         {% trans "Download all audiobooks for this book" %}: 
38         {% if related.media.mp3 %}<a href="{% url download_zip_mp3 book.slug %}">MP3</a>{% endif %}{% if related.media.mp3 and related.media.ogg %},{% endif %}
39         {% if related.media.ogg %}<a href="{% url download_zip_ogg book.slug %}">OGG</a>{% endif %}.
40         {% endif %}
41       </li>
42       <li>
43         <a href="{% url custom_pdf_form %}?slug={{book.slug}}" id="custom-pdf" class="ajaxable">{% trans "Download a custom PDF" %}</a>
44       </li>
45     </ul>
46   </div>
47 </div>
48 {% endblock %}