selected cites in admin
[wolnelektury.git] / wolnelektury / templates / catalogue / book_wide.html
1 {% extends "catalogue/book_short.html" %}
2 {% load i18n %}
3 {% load cite_promo from social_tags %}
4
5 {% block box-class %}book-wide-box{% endblock %}
6
7 {% block right-column %}
8 <div class="right-column">
9     <div class="quote">
10   {% cite_promo book 1 %}
11   </div>
12
13   <div class="other-tools">
14     <h2 class="mono">{% trans "See" %}</h2>
15     <ul class="inline-items">
16       {% if extra_info.source_url %}
17       <li><a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}</li>
18       {% endif %}
19       {% if extra_info.about and not hide_about %}
20       <li>{% trans "Book on" %} <a href="{{ extra_info.about }}">{% trans "Editor's Platform" %}</a></li>
21       {% endif %}
22       {% if book.gazeta_link %}
23       <li><a href="{{ book.gazeta_link }}">{% trans "Book description on Lektury.Gazeta.pl" %}</a></li>
24       {% endif %}
25       {% if book.wiki_link %}
26       <li><a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a></li>
27       {% endif %}
28     </ul>
29   </div>
30   <div class="other-download">
31     <h2 class="mono">{% trans "Download" %}</h2>
32     <ul class="inline-items">
33       <li>
34         {% if related.media.mp3 or related.media.ogg %}
35         {% trans "Download all audiobooks for this book" %}: 
36         {% if related.media.mp3 %}<a href="{% url download_zip_mp3 book.slug %}">MP3</a>{% endif %}{% if related.media.mp3 and related.media.ogg %},{% endif %}
37         {% if related.media.ogg %}<a href="{% url download_zip_ogg book.slug %}">OGG</a>{% endif %}.
38         {% endif %}
39       </li>
40       <li>
41         <a href="{% url custom_pdf_form %}?slug={{book.slug}}" id="custom-pdf" class="ajaxable">{% trans "Download a custom PDF" %}</a>
42       </li>
43     </ul>
44   </div>
45 </div>
46 {% endblock %}