{% extends "sopds_main.html" %} {% load i18n %} {% block body %}
{% 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 }} |