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

{{ book.title }}

{% if editable %}
{% csrf_token %}{% endif %} {% bootstrap_form form %} {% if editable %} {% buttons %} {% endbuttons %} {% endif %} {% if editable %}
{% endif %} {% if editable %} {% if book.gallery %}

{% trans "Edit gallery" %}

{% endif %}

{% trans "Append to other book" %}

{% endif %}
{% with cbook=book.catalogue_book %} {% if cbook %} W katalogu: {{ cbook }} {% endif %} {% endwith %}

{% trans "Chunks" %}

{% for chunk in book %} {% include 'documents/book_list/chunk.html' %} {% endfor %}

{% trans "Publication" %}

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

Okładka w rozmiarze x

{% 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:" %}

  • {{ publishable_error }}
{% endif %}
{% endblock content %}