1 {% extends "base.html" %}
3 {% load common_tags catalogue_tags %}
5 {% block titleextra %}{{ book.pretty_title }}{% endblock %}
6 {% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
8 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
10 {% block bodyid %}book-detail{% endblock %}
16 {% work_list book_children %}
19 {% if book.other_versions %}
20 <section class="see-also" style="display: inline-block;">
21 <h1>{% trans "Other versions" %}:</h1>
22 {% for rel in book.other_versions %}
28 <section class="see-also" style="display: inline-block;">
29 <h1>{% trans "See also" %}:</h1>
30 {% related_books book taken=book.other_versions|length %}