{% extends "sopds_main.html" %} {% load i18n %} {% block body %}
{% trans "Confirm the deletion of the book to your bookshelf." %}

{% trans "Delete" %}    {% trans "Cancel" %}

{% if isbookshelf %}
{% trans "Confirm to clear your bookshelf." %}

{% trans "Clear" %}    {% trans "Cancel" %}

{% trans "Clear bookshelf" %} {% endif %} {% for b in books %}
{{ b.title }} {% trans "Download:" %} {{b.format}}  {% if not b.format in nozip %} {{b.format}}+zip  {% endif %} {% if b.format == 'fb2' and fb2toepub %} epub  {% endif %} {% if b.format == 'fb2' and fb2tomobi %} mobi  {% endif %} {% if isbookshelf %}    {% trans "Delete from bookshelf" %}  {% endif %}
{% trans "Book title:" %} {{ b.title }}
{% if b.authors.count > 0 %} {% trans "Authors:" %}{% for a in b.authors %} {{a.full_name}}{% if not forloop.last %},{%endif%} {%endfor%}
{% endif %} {% if b.genres.count > 0 %} {% trans "Genres:" %}{% for g in b.genres %} {{g.subsection}}{% if not forloop.last %},{%endif%} {%endfor%}
{% endif %} {% if b.series.count > 0 %} {% trans "Series:" %} {% for s in b.series %} {{s.ser}}{% if not forloop.last %},{%endif%} {%endfor%}
{% trans "No in Series:" %} {% for s in b.ser_no %}{{s.ser_no}}{% if not forloop.last %},{%endif%} {%endfor%}
{% endif %} {% trans "File:" %} {{ b.path }}/{{ b.filename }}
{% trans "File size:" %} {{ b.filesize }}Кб.
{% trans "Changes date:" %} {{ b.docdate }}
{% if b.doubles > 0 %} {% trans "Doubles for book:" %} {{ b.title }} ({{b.doubles}}шт.)
{% endif %} {% if b.readtime %} {% trans "Read date:" %} {{ b.readtime.0.readtime }}
{% endif %}

{{ b.annotation }}

{% endfor %} {% if paginator.num_pages > 1 %} {% endif %} {% endblock %} {# body #}