{% extends "basic_layout.html" %} {% block body %}

{{ entry.title }}

{% for author in entry.ordered_authors %}

{{ author.name.replace("|",",") }}

{% endfor %}
{% if current_user.role_download() %} {% if entry.data|length %}

Download

{% for format in entry.data %}

{{ format.format }} ({{ format.uncompressed_size|filesizeformat }})

{% endfor %}
{% endif %} {% endif %}

Details

{% if entry.series|length > 0 %}

{{ _("Book %(index)s of %(range)s", index=entry.series_index | formatfloat(2), range=(entry.series[0].name)|safe) }}

{% endif %} {% if entry.languages|length > 0 %}

{{_('Language')}}: {% for language in entry.languages %}{{language.language_name}}{% if not loop.last %}, {% endif %}{% endfor %}

{% endif %} {% if entry.identifiers|length > 0 %}

{% for identifier in entry.identifiers %}

{{ identifier.format_type() }}: {{ identifier|escape }}

{% endfor %}

{% endif %} {% if entry.publishers|length > 0 %}

{{ _('Publisher') }}: {{ entry.publishers[0].name }}

{% endif %} {% if (entry.pubdate|string)[:10] != '0101-01-01' %}

{{ _('Published') }}: {{ entry.pubdate|formatdate }}

{% endif %} {% if entry.comments|length > 0 and entry.comments[0].text|length > 0 %}

{{ _('Description:') }}

{{ entry.comments[0].text|safe }}
{% endif %}
{% endblock %}