image listings / boxes work but need polishing. started coding the viewer.
[wolnelektury.git] / apps / picture / templates / picture / picture_wide.html
1 {% extends "picture/picture_short.html" %}
2 {% load i18n %}
3 {% load picture_tags thumbnail %}
4 {% load cite_promo from social_tags %}
5
6
7 {% block box-class %}book-wide-box{% endblock %}
8
9 {% block picture-view %}
10 {% thumbnail picture.image_file "535" upscale="false" as thumb %}
11 <img class="cover" src="{{thumb.url}}"/>
12 {% endthumbnail %}
13 {% endblock %}
14
15
16 {% block book-box-extra-info %}
17 {% if themes %}
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">
22             <ul>
23             {% for theme in themes %}
24                 <li><a href="{% url 'book_fragments' book.slug theme.slug %}">{{ theme }} ({{ theme.count }})</a></li>
25             {% endfor %}
26             </ul>
27         </div>
28     </div>
29 {% else %}
30         <p>&nbsp;</p>
31 {% endif %}
32 {% endblock %}
33
34
35 {% block right-column %}
36 <div class="right-column">
37    INFO
38   {% comment %}<div class="other-tools">
39     <h2 class="mono">{% trans "See" %}</h2>
40     <ul class="plain">
41       {% if extra_info.source_url %}
42       <li><a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the book" %}</li>
43       {% endif %}
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>
47       {% endif %}
48       {% if book.gazeta_link %}
49       <li><a href="{{ book.gazeta_link }}">{% trans "Book description on Lektury.Gazeta.pl" %}</a></li>
50       {% endif %}
51       {% if book.wiki_link %}
52       <li><a href="{{ book.wiki_link }}">{% trans "Book description on Wikipedia" %}</a></li>
53       {% endif %}
54       <li><a href="{% url 'poem_from_book' book.slug %}">{% trans "Mix this book" %}</a></li>
55     </ul>
56   </div>
57   <div class="other-download">
58     <h2 class="mono">{% trans "Download" %}</h2>
59     <ul class="plain">
60       <li>
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 %}.
64         {% endif %}
65       </li>
66       {% custom_pdf_link_li book %}
67     </ul>
68   </div>{% endcomment %}
69 </div>
70 {% endblock %}