<b>{% trans "Book name:" %} </b>{{ obj.title }}<br/>
<b>{% trans "Authors:" %} </b>{% for a in obj.authors.all %}{{ a.last_name }} {{ a.first_name }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
<b>{% trans "Genres:" %} </b>{% for g in obj.genres.all %}{{ g.subsection }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
<b>{% trans "Authors:" %} </b>{% for a in obj.authors.all %}<author><name>{{ a.last_name }} {{ a.first_name }}</name></author>{% endfor %}<br/>
<b>{% trans "Genres:" %} </b>{% for g in obj.genres.all %}<categoryterm="{{ g.subsection }}"label="{{ g.subsection }}"/>{% endfor %}<br/>
<b>{% trans "File:" %} </b>{{ obj.filename }}<br/>
<b>{% trans "File size:" %} </b>{{ obj.filesize }}<br/>
<b>{% trans "Changes date:" %} </b>{{ obj.docdate }}<br/>