1 {% extends "picture/picture_short.html" %}
3 {% load picture_tags thumbnail %}
4 {% load cite_promo from social_tags %}
7 {% block box-class %}book-wide-box{% endblock %}
9 {% block picture-view %}
10 {% thumbnail picture.image_file "535" upscale="false" as thumb %}
11 <img class="cover" src="{{thumb.url}}"/>
16 {% block book-box-extra-info %}
18 <div class="hidden-box-wrapper" id="theme-list-wrapper">
19 <p><a class="mono hidden-box-trigger theme-list-link"
20 href="#">{% trans "Motifs and themes" %}</a></p>
21 <div class="hidden-box">
23 {% for theme in themes %}
24 <li><a href="{% url 'book_fragments' book.slug theme.slug %}">{{ theme }} ({{ theme.count }})</a></li>
35 {% block right-column %}
36 <div class="right-column">
38 {% comment %}<div class="other-tools">
39 <h2 class="mono">{% trans "See" %}</h2>
41 {% if extra_info.source_url %}
42 <li><a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}</li>
44 <li><a href="{{ book.xml_file.url }}">{% trans "Source XML file" %}</a></li>
45 {% if extra_info.about and not hide_about %}
46 <li>{% trans "Book on" %} <a href="{{ extra_info.about }}">{% trans "Editor's Platform" %}</a></li>
48 {% if book.gazeta_link %}
49 <li><a href="{{ book.gazeta_link }}">{% trans "Book description on Lektury.Gazeta.pl" %}</a></li>
51 {% if book.wiki_link %}
52 <li><a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a></li>
54 <li><a href="{% url 'poem_from_book' book.slug %}">{% trans "Mix this book" %}</a></li>
57 <div class="other-download">
58 <h2 class="mono">{% trans "Download" %}</h2>
61 {% if related.media.mp3 or related.media.ogg or related.media.daisy %}
62 {% trans "Download all audiobooks for this book" %}:
63 {% download_audio book %}.
66 {% custom_pdf_link_li book %}
68 </div>{% endcomment %}