{% extends "catalogue/base.html" %} {% load book_list i18n %} {% block titleextra %}{{ book.title }}{% endblock %} {% block content %}

{{ book.title }}

{% if editable %}
{% csrf_token %}{% endif %} {{ form.as_table }} {% if editable %} {% endif %}
{% if editable %}
{% endif %} {% if editable %} {% if book.gallery %}

{% trans "Edit gallery" %}

{% endif %}

{% trans "Append to other book" %}

{% endif %}

{% trans "Chunks" %}

{% for chunk in book %} {{ chunk.short_html|safe }} {% endfor %}

{% trans "Publication" %}

{% if book.dc_cover_image %} {{ book.dc_cover_image }} {% endif %}

{% trans "Last published" %}: {% if book.last_published %} {{ book.last_published }} {% else %} — {% endif %}

{% if publishable %}

{% trans "Full XML" %}
{% trans "HTML version" %}
{% trans "TXT version" %}
{% trans "PDF version" %}
{% trans "PDF version for mobiles" %}
{% trans "EPUB version" %}
{% trans "MOBI version" %}

{% if user.is_authenticated %}
{% csrf_token %} {{ publish_options_form.as_p }}
{% else %} {% trans "Log in to publish." %} {% endif %} {% else %}

{% trans "This book can't be published yet, because:" %}

{% endif %}
{% endblock content %}