{% extends 'oeuvres/base_oeuvres.html.twig' %} {% block title %}Détail de l'œuvre{% endblock %} {% block body %}

🎨 {{ oeuvre.titre }}

← Retour à la liste
{% if app.user and (is_granted('ROLE_ADMIN') or is_granted('OEUVRE_EDIT', oeuvre)) %} ➕ Ajouter un article {% endif %} {% if is_granted('OEUVRE_EDIT', oeuvre) %} ✏️ Modifier {{ include('oeuvres/_delete_form.html.twig') }} {% endif %}

Type :

{{ oeuvre.type }}

Slug :

{{ oeuvre.slug }}

Description :

{{ oeuvre.description|raw }}

Sommaire :

{% include 'components/_search_bar.html.twig' with { 'input_id': 'articleSearch', 'js_callback': 'searchFilters.filterArticles', 'placeholder': 'Rechercher un article...' } %}
{% if articles is not empty %}
    {% for article in articles %} {% include 'components/_article_summary.html.twig' %} {% endfor %}
{% else %}

Aucun article lié à cette œuvre.

{% endif %}
{% endblock %}