{% extends 'base.html.twig' %} {% block title %}Gestion des articles{% endblock %} {% block body %}

gestion des articles

Créer un nouvel article {% for article in articles %} {% if is_granted('edit', article) %} {% endif %} {% else %} {% endfor %}
Id Titre Date de publication Etat Auteur Actions
{{ article.id }} {{ article.title }} {{ article.publicationDate ? article.publicationDate|date('Y-m-d H:i:s') : '' }} {{ article.state | trans }} {{ article.author }} {% if is_granted('show', article) %} Voir {% endif %} {% if is_granted('edit', article) %} Editer {% endif %}
no records found
{{ include('article/_bouton_agrandir.html.twig') }} {% endblock %}