fix player placement in search results
[wolnelektury.git] / src / catalogue / templates / catalogue / book_short.html
1 {% spaceless %}
2   {% load i18n %}
3   {% load catalogue_tags %}
4   {% load book_shelf_tags from social_tags %}
5   {% load static %}
6
7   {% with ga=book.get_audiobooks %}
8   {% with audiobooks=ga.0 %}
9   <div class="{% block box-class %}book-box{% if audiobooks %} audiobook-box{% endif %}{% endblock %}">
10     <div class="book-box-inner">
11
12     {% block book-box-pre %}
13       {% include "catalogue/snippets/like_button.html" %}
14     {% endblock %}
15
16     {% with book.tags_by_category as tags %}
17     <div class="book-left-column">
18       <div class="book-box-body">
19         {% block book-box-body-pre %}
20         {% endblock %}
21
22         <div class="book-box-head">
23           <div class="author">
24             {% for tag in tags.author %}
25               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>{% if not forloop.last %},
26             {% endif %}{% endfor %}{% for parent in book.parents %},
27               <a href="{{ parent.get_absolute_url }}">{{ parent.title }}</a>{% endfor %}
28           </div>
29           <div class="title">
30             <a href="{{ book.get_absolute_url }}">{{ book.title }}</a>
31           </div>
32           {% if book.translator %}
33               <div class="author">
34                   tłum. {{ book.translator }}
35               </div>
36           {% endif %}
37         </div>
38
39         <div class="cover-area">
40           {% if book.cover_thumb %}
41             <a href="{{ book.get_absolute_url }}">
42               <img src="{{ book.cover_thumb.url }}" alt="Cover" class="cover" />
43             </a>
44           {% endif %}
45           {% block cover-area-extra %}{% endblock %}
46         </div>
47
48         <div class="tags">
49           <span class="category">
50           <span class="mono"> {% trans "Epoch" %}:</span>&nbsp;<span class="book-box-tag">
51             {% for tag in tags.epoch %}
52               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
53               {% if not forloop.last %}<span>, </span>{% endif %}
54             {% endfor %}
55           </span></span>
56
57           <span class="category">
58           <span class="mono"> {% trans "Kind" %}:</span>&nbsp;<span class="book-box-tag">
59             {% for tag in tags.kind %}
60               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
61               {% if not forloop.last %}<span>, </span>{% endif %}
62             {% endfor %}
63           </span></span>
64
65           <span class="category">
66           <span class="mono"> {% trans "Genre" %}:</span>&nbsp;<span class="book-box-tag">
67             {% for tag in tags.genre %}
68               <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
69               {% if not forloop.last %}<span>, </span>{% endif %}
70             {% endfor %}
71           </span></span>
72
73           {% if book.is_foreign %}
74             <span class="category">
75               <span class="mono"> {% trans "Language" %}:</span>&nbsp;<span class="book-box-tag">
76                 <a>{{ book.language_name }}</a>
77               </span>
78             </span>
79           {% endif %}
80
81           {% with stage_note=book.stage_note %}
82           {% if stage_note.0 %}
83             <br>
84             <span class="category">
85               <a{% if stage_note.1 %} href="{{ stage_note.1 }}"{% endif %}>{{ stage_note.0 }}</a>
86             </span>
87           {% endif %}
88           {% endwith %}
89         </div>
90       </div>
91       {% book_shelf_tags book.pk %}
92
93       <ul class="book-box-tools">
94         <li class="book-box-read">
95           {% if book.html_file %}
96             <a href="{% url 'book_text' book.slug %}" class="downarrow">{% trans "Read online" %}</a>
97           {% endif %}
98           {% if book.print_on_demand %}
99             <a href="{{ book.ridero_link }}" class="downarrow print tlite-tooltip" title="{% trans "Cena książki w druku cyfrowym jest zależna od liczby stron.<br>Przed zakupem upewnij się, że cena druku na żądanie jest dla Ciebie odpowiednia.<br>Wszystkie nasze zasoby w wersji elektronicznej są zawsze dostępne bezpłatnie." %}">{% trans "Print on demand –" %}
100                 <img src="{% static 'img/ridero.png' %}" style="height: 0.8em;"/></a>
101           {% endif %}
102         </li>
103         <li class="book-box-download">
104           <a class="downarrow">{% trans "Download" %}:</a>
105           <div class="book-box-formats">
106             {% if book.pdf_file %}
107               <span><a href="{{ book.pdf_file.url}}">PDF</a></span>
108             {% endif %}
109             {% custom_pdf_link_li book %}
110             {% if book.epub_file %}
111               <span><a href="{{ book.epub_file.url}}">EPUB</a></span>
112             {% endif %}
113             {% if book.mobi_file %}
114               <span><a href="{{ book.mobi_file.url}}">MOBI</a></span>
115             {% endif %}
116             {% if  book.fb2_file %}
117               <span><a href="{{ book.fb2_file.url}}">FB2</a></span>
118             {% endif %}
119             {% if  book.txt_file %}
120               <span><a href="{{ book.txt_file.url}}">TXT</a></span>
121             {% endif %}
122             {% download_audio book %}
123           </div>
124         </li>
125       </ul>
126       {% block book-box-extra-info %}{% endblock %}
127       {% block box-append %}
128       {% endblock %}
129     </div>
130     {% endwith %}
131
132     {% block right-column %}
133       {% if audiobooks %}
134         <div class="book-right-column">
135           {% include 'catalogue/snippets/jplayer.html' %}
136         </div>
137       {% endif %}
138     {% endblock %}
139
140     <div class="clearboth"></div>
141     </div>
142   </div>
143   {% endwith %}
144   {% endwith %}
145 {% endspaceless %}