{% extends "base/base.html" %}
{% load i18n %}
{% load catalogue_tags %}
{% load build_absolute_uri from fnp_common %}
{% load annoy_banner from annoy %}
{% load cache %}
{% block titleextra %}{{ book.pretty_title }}{% endblock %}
{% block ogimage %}{% if book.cover %}{{ book.cover.url|build_absolute_uri:request }}{% endif %}{% endblock %}
{% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
{% block bodyid %}book-detail{% endblock %}
{% block body %}
  {% include 'catalogue/book_wide.html' %}
  {% work_list book_children %}
  {% spaceless %}
    {% if book.other_versions %}
      {% trans "Other versions" %}:
        {% for rel in book.other_versions %}
	  {{ rel.mini_box }}
        {% endfor %}
      {% trans "See also" %}:
      {% related_books book taken=book.other_versions|length %}