7e8128fa7d999ed724e2e64cea8e137b50ee65e0
[wolnelektury.git] / src / catalogue / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load common_tags catalogue_tags %}
4 {% load ssify %}
5 {% load build_absolute_uri from fnp_common %}
6
7 {% block titleextra %}{{ book.pretty_title }}{% endblock %}
8 {% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
9
10 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
11
12 {% block bodyid %}book-detail{% endblock %}
13
14 {% block body %}
15
16 {% ssi_include 'catalogue_book_wide' pk=book.pk %}
17
18 {% work_list book_children %}
19
20 {% spaceless %}
21 {% if book.other_versions %}
22 <section class="see-also" style="display: inline-block;">
23 <h1>{% trans "Other versions" %}:</h1>
24 {% for rel in book.other_versions %}
25     {% ssi_include 'catalogue_book_mini' pk=rel.pk %}
26 {% endfor %}
27 </section>
28 {% endif %}
29
30 <section class="see-also" style="display: inline-block;">
31 <h1>{% trans "See also" %}:</h1>
32 {% related_books book taken=book.other_versions|length %}
33 </section>
34 {% endspaceless %}
35
36 {% endblock %}