Merge branch 'master' into rwd
[wolnelektury.git] / apps / catalogue / templates / catalogue / book_detail.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load thumbnail %}
4 {% load common_tags catalogue_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 <section class="see-also">
21 <h1>{% trans "See also" %}:</h1>
22 {% related_books book %}
23 </section>
24
25 {% endblock %}