4 {% load catalogue_tags %}
5 {% load book_shelf_tags from social_tags %}
8 {% with ga=book.get_audiobooks %}
9 {% with audiobooks=ga.0 %}
10 <div class="{% block box-class %}book-box{% if audiobooks %} audiobook-box{% endif %}{% endblock %}">
11 <div class="book-box-inner">
13 {% block book-box-pre %}
14 {% include "catalogue/snippets/like_button.html" %}
17 {% with book.tags_by_category as tags %}
18 <div class="book-left-column">
19 <div class="book-box-body">
20 {% block book-box-body-pre %}
23 <div class="cover-area">
24 {% if book.cover_thumb %}
25 <a href="{% block cover-link %}{{ book.get_absolute_url }}{% endblock %}">
26 <img src="{{ book.cover_thumb.url }}" alt="Cover" class="cover" />
29 {% block cover-area-extra %}{% endblock %}
32 {% get_current_language as LANGUAGE_CODE %}
33 {% cache 86400 book_box_head_tags book.pk LANGUAGE_CODE %}
34 <div class="book-box-head">
36 {% for tag in tags.author %}
37 <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>{% if not forloop.last %},
38 {% endif %}{% endfor %}{% for parent in book.parents %},
39 <a href="{{ parent.get_absolute_url }}">{{ parent.title }}</a>{% endfor %}
42 <a href="{{ book.get_absolute_url }}">{{ book.title }}</a>
44 {% if book.translator %}
46 tłum. {{ book.translator }}
52 <span class="category">
53 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
54 {% for tag in tags.epoch %}
55 <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
56 {% if not forloop.last %}<span>, </span>{% endif %}
60 <span class="category">
61 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
62 {% for tag in tags.kind %}
63 <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
64 {% if not forloop.last %}<span>, </span>{% endif %}
68 <span class="category">
69 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
70 {% for tag in tags.genre %}
71 <a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a>
72 {% if not forloop.last %}<span>, </span>{% endif %}
76 {% with extra_info=book.get_extra_info_json %}
77 {% if extra_info.location %}
78 <span class="category">
79 <span class="mono"> {% trans "Region" %}:</span> <span class="book-box-tag">
80 {{ extra_info.location }}
85 {% if book.is_foreign %}
86 <span class="category">
87 <span class="mono"> {% trans "Language" %}:</span> <span class="book-box-tag">
88 <a>{{ book.language_name }}</a>
93 {% with stage_note=book.stage_note %}
96 <span class="category">
97 <a{% if stage_note.1 %} href="{{ stage_note.1 }}"{% endif %}>{{ stage_note.0 }}</a>
104 {% book_shelf_tags book.pk %}
106 {% cache 86400 book_box_tools book.pk book|status:request.user LANGUAGE_CODE %}
107 {% if book|status:request.user != 'closed' %}
108 <ul class="book-box-tools">
109 <li class="book-box-read">
110 {% if book.html_file %}
111 <div>{% content_warning book %}</div>
112 <a href="{% url 'book_text' book.slug %}" class="downarrow">{% trans "Read online" %}</a>
114 {% if book.print_on_demand %}
115 <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 –" %}
116 <img src="{% static 'img/ridero.png' %}" style="height: 0.8em;"/></a>
119 <li class="book-box-download">
120 <div class="book-box-formats">
121 {% trans "Download an ebook" %}:<br>
122 {% if book.pdf_file %}
123 <a href="{{ book.pdf_url}}">PDF</a>
125 {% if book.epub_file %}
126 <a href="{{ book.epub_url}}">EPUB</a>
128 {% if book.mobi_file %}
129 <a href="{{ book.mobi_url}}">MOBI</a>
131 {% if book.fb2_file %}
132 <a href="{{ book.fb2_url}}">FB2</a>
134 {% if book.txt_file %}
135 <a href="{{ book.txt_url}}">TXT</a>
138 {% if book.has_mp3_file %}
139 <div class="book-box-formats">
140 {% trans "Download audiobook" %}:<br>
141 {% download_audio book %}
144 <div class="book-box-formats">
145 {% custom_pdf_link_li book %}
150 {% block preview-info %}
151 <p class="book-box-tools book-box-tools-warn">
152 {% trans "For now this work is only available for our subscribers." %}
153 <a href="{% url 'club_join' %}">Wspieraj Wolne Lektury</a>
155 <div>{% content_warning book %}</div>
159 {% block book-box-extra-info %}{% endblock %}
160 {% block box-append %}{% endblock %}
164 {% block right-column %}
165 {% if audiobooks %}{% if book|status:request.user != 'closed' %}
166 <div class="book-right-column">
167 {% include 'catalogue/snippets/jplayer.html' %}
169 {% endif %}{% endif %}
171 {% if book.abstract %}
172 <div class="abstract more-expand">
173 {{ book.abstract|safe }}
177 <div class="clearboth"></div>