{{ article.title }}
{% if app.user and ('ROLE_ADMIN' in app.user.roles or app.user == article.author) %}
{{ article.status == 'published' ? 'Publié' : 'Brouillon' }}
{% endif %}
Créé le {{ article.createdAt|date('d/m/Y') }}
Modifié le {{ article.updatedAt|date('d/m/Y') }}