Merge branch 'master' into sunburnt
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load cache i18n %}
3 {% load thumbnail %}
4 {% load common_tags catalogue_tags pagination_tags %}
5
6 {% block titleextra %}{{ book.pretty_title }}{% endblock %}
7 {% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
8
9 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
10
11 {% block bodyid %}book-detail{% endblock %}
12
13 {% block body %}
14
15 {% book_wide book %}
16
17 {% work_list book_children %}
18
19
20 <h2 class="main-last"><span class="mono">{% trans "See also" %}:</span></h2>
21 {% related_books book %}
22
23 {% endblock %}