{% extends 'base.html.twig' %} {% block title %}{{ work.title }} · édition {{ edition.publishedYear ?: '?' }} · LivreComment{% endblock %} {% block app_header %} {% include 'components/_detail_header.html.twig' with { back_fallback: path('app_work_show', { publicId: work.publicId }), title: 'Livre' } only %} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

{{ work.title }}{% if edition.subtitle %} {{ edition.subtitle }}{% endif %}

Édition {{ edition.publishedYear ?: '?' }}{% if edition.publisher %} · {{ edition.publisher }}{% endif %}

{% if edition.coverUrl %}
Couverture de l'édition
{% endif %}
{% if edition.isbn13 %}
ISBN-13
{{ edition.isbn13 }}
{% endif %} {% if edition.isbn10 %}
ISBN-10
{{ edition.isbn10 }}
{% endif %} {% if edition.language %}
Langue
{{ edition.language|upper }}
{% endif %} {% if edition.pageCount %}
Pages
{{ edition.pageCount }}
{% endif %} {% if edition.publisher %}
Éditeur
{{ edition.publisher }}
{% endif %} {% if edition.publishedYear %}
Année
{{ edition.publishedYear }}
{% endif %}

Pour noter ou critiquer cette œuvre, retourne à la fiche principale.

{% endblock %}