remove the banner
[wolnelektury.git] / src / catalogue / templates / catalogue / book_detail.html
1 {% extends 'base.html' %}
2 {% load i18n %}
3 {% load chunks %}
4 {% load static %}
5 {% load choose_cites from social_tags %}
6 {% load catalogue_tags %}
7 {% load likes_book from social_tags %}
8
9
10 {% block global-content %}
11     <div class="l-container">
12       <div class="l-breadcrumb">
13         <a href="/"><span>{% trans "Strona główna" %}</span></a>
14         <a href="/katalog/lektury/"><span>{% trans "Literatura" %}</span></a>
15         {% for ancestor in book.ancestors %}
16           <a href="{{ ancestor.get_absolute_url }}">{{ ancestor.title }}</a>
17         {% endfor %}
18       </div>
19     </div>
20
21
22     <main class="l-main page-book">
23       <section class="l-section lay-s-col-rev">
24         {% with first_text=book.get_first_text %}
25           <aside class="l-aside">
26             <figure class="only-l">
27               {% if accessible and first_text %}
28                 <a href="{% url 'book_text' first_text.slug %}">
29               {% endif %}
30               <img src="{% if book.cover_clean %}{{ book.cover_clean.url }}{% endif %}" alt="{{ book.pretty_title }}" width="240">
31               {% if accessible and first_text %}
32                 </a>
33               {% endif %}
34             </figure>
35
36             {% if book.parent or book.get_children %}
37               <ul class="l-aside__zbiory">
38                 {% if book.parent %}
39                   {% for b in book.ancestors %}
40                     <li>
41                       <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
42                       <ul>
43                   {% endfor %}
44                   {% for b in book.get_siblings %}
45                     <li>
46                       {% if b == book %}
47                         <strong>{{ b.title }}</strong>
48                         <ul>
49                           {% for c in book.get_children %}
50                             <li>
51                               <a href="{{ c.get_absolute_url }}">{{ c.title }}</a>
52                             </li>
53                           {% endfor %}
54                         </ul>
55                       {% else %}
56                         <a href="{{ b.get_absolute_url }}">{{ b.title }}</a>
57                       {% endif %}
58                     </li>
59                   {% endfor %}
60
61                   {% for b in book.ancestor.all %}
62                       </ul>
63                     </li>
64                   {% endfor %}
65                 {% else %}
66                   <li>
67                     <strong>{{ book.title }}</strong>
68                     <ul>
69                       {% for c in book.get_children %}
70                         <li>
71                           <a href="{{ c.get_absolute_url }}">{{ c.title }}</a>
72                         </li>
73                       {% endfor %}
74                     </ul>
75                   </li>
76                 {% endif %}
77               </ul>
78             {% endif  %}
79
80             <ul class="l-aside__info">
81               <li><span>{% trans "Epoka" %}:</span> {% for tag in book.epochs %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
82               <li><span>{% trans "Rodzaj" %}:</span> {% for tag in book.kinds %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
83               <li><span>{% trans "Gatunek" %}:</span> {% for tag in book.genres %}<a href="{{ tag.get_absolute_url }}">{{ tag.name }}</a> {% endfor %}</li>
84
85             </ul>
86           </aside>
87           <div class="l-content">
88             <header class="l-header">
89               <div class="l-header__content">
90                 <p>{% for author in book.authors %}<a href="{{ author.get_absolute_url }}">{{ author.name }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}
91                 </p>
92                 <h1><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h1>
93                 {% if book.translators.exists %}
94                   <p class="l-header__translators">
95                     {% for translator in book.translators.all %}
96                       {% if forloop.first and translator.name != 'tłumacz nieznany' %}
97                         {% trans "tłum." %}
98                       {% endif %}
99                       <a href="{{ translator.get_absolute_url }}">
100                         {{ translator }}</a>{% if not forloop.last %}, {% endif %}
101                     {% endfor %}
102                   </p>
103                 {% endif %}
104               </div>
105
106
107
108               {% likes_book book as likes %}
109               <div class="l-header__actions only-l">
110                 {% if likes %}
111                   <form method='post' action='{% url 'social_unlike_book' book.slug %}'>
112                     {% csrf_token %}
113                     <button class="l-button l-button--fav">
114                       <img src="{% static '2022/images/faved.svg' %}" alt="{% trans 'Usuń z ulubionych' %}">
115                     </button>
116                   </form>
117                 {% else %}
118                   <form method='post' action='{% url 'social_like_book' book.slug %}'>
119                     {% csrf_token %}
120                     <button class="l-button l-button--fav">
121                       <img src="{% static '2022/images/fav.svg' %}" alt="{% trans 'Dodaj do ulubionych' %}">
122                     </button>
123                   </form>
124                 {% endif %}
125               </div>
126             </header>
127             <article class="l-article">
128
129
130
131
132
133               {% if accessible %}
134                 <div class="c-media">
135                   <div class="lay-row lay-l-block lay-spread">
136                     <figure class="only-s book-cover-small">
137                       {% if accessible and first_text %}
138                         <a href="{% url 'book_text' first_text.slug %}">
139                       {% endif %}
140                       <img src="{% if book.cover_clean %}{{ book.cover_clean.url }}{% endif %}" alt="{{ book.pretty_title }}">
141                       {% if accessible and first_text %}
142                         </a>
143                       {% endif %}
144                     </figure>
145                     <div class="lay-col lay-spread lay-grow">
146                       <div class="l-header__actions only-s">
147                         {% if likes %}
148                           <form method='post' action='{% url 'social_unlike_book' book.slug %}'>
149                             {% csrf_token %}
150                             <button class="l-button l-button--fav">
151                               <img src="{% static '2022/images/faved.svg' %}" alt="{% trans 'Usuń z ulubionych' %}">
152                             </button>
153                           </form>
154                         {% else %}
155                           <form method='post' action='{% url 'social_like_book' book.slug %}'>
156                             {% csrf_token %}
157                             <button class="l-button l-button--fav">
158                               <img src="{% static '2022/images/fav.svg' %}" alt="{% trans 'Dodaj do ulubionych' %}">
159                             </button>
160                           </form>
161                         {% endif %}
162                       </div>
163                       <div class="c-media__actions lay-col lay-l-row">
164                         <div class="c-media__btn">
165                           {% if book.has_mp3_file %}
166                             <button class="l-button l-button--media" id="audiobook"><i class="icon icon-audio"></i> {% trans "pobierz audiobook" %}</button>
167                           {% endif %}
168                         </div>
169                         <div class="c-media__btn">
170                           <button class="l-button l-button--media" id="ebook"><i class="icon icon-book"></i> {% trans "pobierz książkę" %}</button>
171                         </div>
172                         <div class="c-media__btn">
173                           {% if first_text %}
174                             <a href="{% url 'book_text' first_text.slug %}" class="l-button l-button--media l-button--media--full"><i class="icon icon-eye"></i> {% trans "czytaj online" %}</a>
175                           {% endif %}
176                         </div>
177                       </div>
178                     </div>
179                   </div>
180
181
182
183                   {% if book.has_mp3_file %}
184                     {% include 'catalogue/snippets/jplayer.html' %}
185                   {% else %}
186                     {% with ch=book.get_child_audiobook %}
187                       {% if ch %}
188                         {% include 'catalogue/snippets/jplayer_link.html' with book=ch %}
189                       {% endif %}
190                     {% endwith %}
191
192                   {% endif %}
193
194
195
196
197                   <div class="c-media__popup" data-popup="ebook">
198                     <div class="c-media__popup__box">
199                       <div class="c-media__popup__box__lead">
200                         <h2>{% trans "Pobieranie e-booka" %}</h2>
201                         <p>{% trans "Wybierz wersję dla siebie" %}:</p>
202                       </div>
203                       <div class="c-media__popup__box__items">
204                         {% if book.pdf_file %}
205                           <div class="c-media__popup__box__item">
206                             <div>
207                               <h3>.pdf</h3>
208                               <p>{% trans "Jeśli planujesz wydruk albo lekturę na urządzeniu mobilnym bez dodatkowych aplikacji." %}</p>
209                             </div>
210                             <div>
211                               <a href="{{ book.pdf_url }}" class="l-button l-button--media l-button--media--full">.pdf</a>
212                             </div>
213                           </div>
214                         {% endif %}
215                         {% if book.epub_file %}
216                           <div class="c-media__popup__box__item">
217                             <div>
218                               <h3>.epub</h3>
219                               <p>{% trans "Uniwersalny format e-booków, obsługiwany przez większość czytników sprzętowych i aplikacji na urządzenia mobilne." %}</p>
220                             </div>
221                             <div>
222                               <a href="{{ book.epub_url }}" class="l-button l-button--media l-button--media--full">.epub</a>
223                             </div>
224                           </div>
225                         {% endif %}
226                         {% if book.mobi_file %}
227                           <div class="c-media__popup__box__item">
228                             <div>
229                               <h3>.mobi</h3>
230                               <p>{% trans "Natywny format dla czytnika Amazon Kindle." %}</p>
231                             </div>
232                             <div>
233                               <a href="{{ book.mobi_url }}" class="l-button l-button--media l-button--media--full">.mobi</a>
234                             </div>
235                           </div>
236                         {% endif %}
237                         {% if book.synchro_file %}
238                           <div class="c-media__popup__box__item">
239                             <div>
240                               <h3>synchrobook (epub3)</h3>
241                               <p>{% trans "Książka elektroniczna i audiobook w jednym. Wymaga aplikacji obsługującej format." %}</p>
242                             </div>
243                             <div>
244                               <a href="{{ book.synchro_file }}" class="l-button l-button--media l-button--media--full">synchrobook</a>
245                             </div>
246                           </div>
247                         {% endif %}
248                         {% if book.txt_file or book.fb2_file %}
249                           <div class="c-media__popup__box__item">
250                             <div>
251                               <h3>{% trans "inne formaty" %}</h3>
252                               <ul>
253                                 <li><a href="{% url 'custom_pdf_form' book.slug %}">{% trans "Stwórz własny PDF" %}</a></li>
254                                 {% if book.txt_file %}<li><a href="{{ book.txt_url }}">{% trans "plik tekstowy" %} (.txt)</a></li>{% endif %}
255                                 {% if book.fb2_file %}<li><a href="{{ book.fb2_url }}">{% trans "FictionBook" %}</a></li>{% endif %}
256                               </ul>
257                             </div>
258                           </div>
259                         {% endif %}
260                       </div>
261                       <button class="c-media__popup__close">
262                         <img src="{% static '2022/images/close.svg' %}" alt="{% trans 'Zamknij' %}">
263                       </button>
264                     </div>
265                   </div>
266                   {% if book.has_mp3_file %}
267                     <div class="c-media__popup" data-popup="audiobook">
268                       <div class="c-media__popup__box">
269                         <div class="c-media__popup__box__lead">
270                           <h2>{% trans "Pobieranie audiobooka" %}</h2>
271                           <p>{% trans "Wybierz wersję dla siebie" %}:</p>
272                         </div>
273                         <div class="c-media__popup__box__items">
274                           <div class="c-media__popup__box__item">
275                             <div>
276                               <h3>.mp3</h3>
277                               <p>{% trans "Uniwersalny format, obsługiwany przez wszystkie urządzenia." %}</p>
278                             </div>
279                             <div>
280                               <a href="{% url 'download_zip_mp3' book.slug %}" class="l-button l-button--media l-button--media--full">.mp3</a>
281                             </div>
282                           </div>
283                           {% if book.has_ogg_file %}
284                             <div class="c-media__popup__box__item">
285                               <div>
286                                 <h3>OggVorbis</h3>
287                                 <p>{% trans "Otwarty format plików audio, oferujący wysokiej jakości nagranie." %}</p>
288                               </div>
289                               <div>
290                                 <a href="{% url 'download_zip_ogg' book.slug %}" class="l-button l-button--media l-button--media--full">.ogg</a>
291                               </div>
292                             </div>
293                           {% endif %}
294                           {% if book.has_daisy_file %}
295                             <div class="c-media__popup__box__item">
296                               <div>
297                                 <h3>DAISY</h3>
298                                 <p>{% translate "Format dla osób z dysfunkcjami czytania." %}</p>
299                               </div>
300                               <div>
301                                 {% for dsy in book.media_daisy %}
302                                   <a href="{{ dsy.file.url }}" class="l-button l-button--media l-button--media--full">DAISY</a>
303                                 {% endfor %}
304                               </div>
305                             </div>
306                           {% endif %}
307                           {% if book.has_audio_epub_file %}
308                             <div class="c-media__popup__box__item">
309                               <div>
310                                 <h3>EPUB + audiobook</h3>
311                                 <p>{% trans "Książka elektroniczna i audiobook w jednym. Wymaga aplikacji obsługującej format." %}</p>
312                               </div>
313                               <div>
314                                 {% for epub in book.media_audio_epub %}
315                                   <a href="{{ epub.file.url }}" class="l-button l-button--media l-button--media--full">EPUB+audio</a>
316                                 {% endfor %}
317                               </div>
318                             </div>
319                           {% endif %}
320                         </div>
321                         <button class="c-media__popup__close">
322                           <img src="{% static '2022/images/close.svg' %}" alt="{% trans 'Zamknij' %}">
323                         </button>
324                       </div>
325                     </div>
326                   {% endif %}
327                 </div>
328               {% else %}
329                 <div style="margin-bottom: 1.5rem; font-size: 15px; like-height: 150%; color: #808080;">
330                   {% chunk 'book-preview-warn' %}
331                 </div>
332
333                 <div class="l-checkout__box">
334                   {% include 'club/donation_step1_form.html' with form=donation_form %}
335                 </div>
336               {% endif %}
337
338               <div class="l-article__overlay" data-max-height="327">
339                 {% content_warning book %}
340                 {{ book.abstract|safe }}
341
342                 {% if book.toc %}
343                   <div class="toc">
344                     <h4>{% trans "Spis treści" %}:</h4>
345                     {{ book.toc|safe }}
346                   </div>
347                 {% endif %}
348               </div>
349               <button class="l-article__read-more" aria-label="{% trans 'Kliknij aby rozwinąć' %}" data-label="{% trans 'Czytaj więcej' %}" data-action="{% trans 'Zwiń tekst' %}">{% trans 'Czytaj więcej' %}</button>
350             </article>
351             {% if accessible %}
352             <div class="c-support">
353               <div>
354                 <h2>
355                   {% blocktrans trimmed %}
356                     Ta książka jest dostępna dla tysięcy dzieciaków dzięki
357                     <span>darowiznom</span> od osób takich jak <span>Ty</span>!
358                   {% endblocktrans %}
359                 </h2>
360                 <a href="{% url 'club_join' %}?pk_campaign=layout">{% trans "Dorzuć się!" %}</a>
361               </div>
362               <div class="bg">
363                 <!-- img src="{% static '2022/images/dziecko.jpeg' %}" alt="Dorzuć się!" -->
364               </div>
365             </div>
366             {% endif %}
367           </div>
368         {% endwith %}
369       </section>
370
371       {% for tag in book.authors %}
372         <section class="l-section">
373           <div class="l-author">
374             {% include 'catalogue/author_box.html' %}
375
376             {% if forloop.first %}
377               {% choose_cites 3 book=book as cites %}
378               {% if cites %}
379                 <div class="row">
380                   <div class="l-author__quotes">
381                     <div class="l-author__quotes__slider">
382                       {% for fragment in cites %}
383                         {% include "catalogue/fragment_slider_box.html" %}
384                       {% endfor %}
385                     </div>
386                   </div>
387                 </div>
388               {% endif %}
389             {% endif %}
390           </div>
391         </section>
392       {% endfor %}
393
394       <section class="l-section">
395         <div class="l-themes__wrapper">
396           {% with book.related_themes as themes %}
397             {% if themes %}
398               <h2>
399                 {% trans "Motywy występujące w tym utworze" %}
400                 <a href="/katalog/motyw/"><span>{% trans "Wszystkie motywy" %}</span> <i class="icon icon-arrow-right"></i></a></h2>
401               <div class="l-themes l-article__overlay" data-max-height="80">
402                 <ul>
403                   {% for item in themes %}
404                     <li><a href="{% url 'book_fragments' book.slug item.slug %}">{{ item }}&nbsp;({{ item.count}})</a></li>
405                   {% endfor %}
406                 </ul>
407               </div>
408               <button class="l-article__read-more" aria-label="{% trans 'Kliknij aby rozwinąć' %}" data-label="{% trans 'Zobacz więcej' %}" data-action="{% trans 'Zwiń tekst' %}">{% trans 'Zobacz więcej' %}</button>
409
410             {% endif %}
411           {% endwith %}
412           <ul class="links">
413             {% if book.wiki_link %}
414               <li><a href="{{ book.wiki_link }}">{% trans "strona utworu w Wikipedii" %}</a></li>
415             {% endif %}
416             {% if accessible %}
417             <li>
418               <a href="{{ book.xml_url }}">{% trans "źródłowy plik XML" %}</a>
419             </li>
420             <li>
421               <a target="_blank" href="{% url 'poem_from_book' book.slug %}">{% trans "miksuj treść utworu" %}</a>
422             </li>
423             <li>
424               <a target="_blank" href="{{ book.get_extra_info_json.about }}">{% trans "utwór na Platformie Redakcyjnej" %}</a>
425             </li>
426             {% endif %}
427           </ul>
428         </div>
429       </section>
430     </main>
431
432
433
434
435
436     <section class="l-section">
437       <div class="l-books__wrapper">
438         <div class="l-container">
439           <h2>{% trans "Czytaj także" %}</h2>
440           <div class="l-books">
441             {% if book.other_versions %}
442               {% for rel in book.other_versions %}
443                 <article class="l-books__item">
444                   <figure class="l-books__item__img">
445                     <a href="{{ rel.get_absolute_url }}">
446                       <img src="{% if rel.cover_clean %}{{ rel.cover_clean.url }}{% endif %}" alt="{{ rel.pretty_title }}">
447                     </a>
448                   </figure>
449                   <h3>
450                     {% for author in rel.authors %}
451                       <a href="{{ author.get_absolute_url }}">{{ author }}</a>
452                     {% endfor %}
453                   </h3>
454                   <h2><a href="{{ rel.get_absolute_url }}">{{ rel.title }}</a></h2>
455                 </article>
456               {% endfor %}
457             {% endif %}
458
459
460             {% related_books_2022 book taken=book.other_versions|length as related_books %}
461             {% for rel in related_books %}
462               <article class="l-books__item">
463                 <figure class="l-books__item__img">
464                   <a href="{{ rel.get_absolute_url }}">
465                     <img src="{% if rel.cover_clean %}{{ rel.cover_clean.url }}{% endif %}" alt="{{ rel.pretty_title }}">
466                   </a>
467                 </figure>
468                 <h3>
469                   {% for author in rel.authors %}
470                     <a href="{{ author.get_absolute_url }}">{{ author|upper }}</a>
471                   {% endfor %}
472                 </h3>
473                 <h2><a href="{{ rel.get_absolute_url }}">{{ rel.title }}</a></h2>
474               </article>
475             {% endfor %}
476
477             <article class="l-books__item l-books__item--link">
478               <a href="/katalog/kolekcje/">{% trans "i wiele innych książek, wierszy, obrazów, audiobooków…" %}</a>
479               <a href="/katalog/kolekcje/" class="icon-link"><i class="icon icon-all"></i></a>
480             </article>
481
482           </div>
483         </div>
484       </div>
485     </section>
486
487
488 {% endblock %}