detail page getting shape
[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     <div>Ten, który walczy z potworami powinien zadbać, by sam nie stał się potworem. 
10     Gdy długo spoglądamy w otchłań, otchłań spogląda również w nas.</div>
11   </blockquote>
12
13   <div id="other-tools">
14     <h2 class="mono">{% trans "See" %}</h2>
15     <ul>
16       {% if extra_info.source_url %}
17       <li><a href="{{ extra_info.source_url }}">{% trans "Source of the book" %}</a></li>
18       {% endif %}
19       {% if extra_info.about and not hide_about %}
20       <li><a href="{{ extra_info.about }}">{% trans "Book on the 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 id="other-download">
31     <h2 class="mono">{% trans "Download" %}</h2>
32     <p>{% trans "Download all audiobooks for this book" %}</p>
33   </div>
34 </div>
35 {% endblock %}