{% extends 'base.html.twig' %} {% block title %}Gestion des articles{% endblock %} {% block body %}
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 |