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

{{ object.title }}

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

{% trans "Editor" %}

{% trans "Proceed to the editor." %}

{% trans "Publication" %}

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

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

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

{% endif %}

{% trans "Comments" %}

{% render_comment_list for object %} {% with object.get_absolute_url as next %} {% render_comment_form for object %} {% endwith %}
{% endblock content %}