{% extends 'base.html.twig' %} {% block title %}Article index{% endblock %} {% block body %}
Id | Title | PublicationDate | Etat | actions |
---|---|---|---|---|
{{ article.id }} | {{ article.title }} | {{ article.publicationDate ? article.publicationDate|date('Y-m-d H:i:s') : '' }} | {{ article.state | trans }} | {% if is_granted('view', article) %} show {% endif %} {% if is_granted('edit', article) %} edit {% endif %} |
no records found |