ffa4bcea15fb26d66a5501962e3ba727d80aafdb
[wolnelektury.git] / src / catalogue / templates / catalogue / book_wide.html
1 {% extends "catalogue/book_short.html" %}
2 {% load i18n %}
3 {% load choose_fragment license_icon from catalogue_tags %}
4 {% load choose_cite from social_tags %}
5
6
7 {% block box-class %}book-wide-box{% endblock %}
8
9
10 {% block cover-link %}{% if book.get_first_text %}{% url 'book_text' book.get_first_text.slug %}{% endif %}{% endblock %}
11
12
13 {% block cover-area-extra %}
14   {% with license=book.get_extra_info_json.license %}
15     {% if license %}
16       {% license_icon license %}
17     {% endif %}
18   {% endwith %}
19 {% endblock %}
20
21
22 {% block right-column %}
23   <div class="right-column">
24     <div class="quote">
25       {% choose_cite book as cite_promo %}
26       {% if cite_promo %}
27         {{ cite.promo_box }}
28       {% else %}
29         {% choose_fragment book as fragment_promo %}
30         {% if fragment_promo %}
31           {{ fragment_promo.promo_box }}
32         {% endif %}
33       {% endif %}
34     </div>
35     {% include 'catalogue/snippets/jplayer.html' %}
36   </div>
37 {% endblock %}
38
39
40 {% block book-box-body-pre %}
41   {% include "catalogue/snippets/like_button.html" %}
42 {% endblock %}
43
44 {% block book-box-pre %}
45 {% endblock %}