{% 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...'
} %}
Aucun article ne correspond à votre recherche.
{% if articles is not empty %}
{% for article in articles %}
{% include 'components/_article_summary.html.twig' %}
{% endfor %}