123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {% extends 'base.html.twig' %}
- {% block title %}Gestion des articles{% endblock %}
- {% block body %}
- <div>
- <h1>gestion des articles</h1>
- <a class="btn btn-blue" href="{{ path('app_article_new') }}">Créer un nouvel article</a>
-
- <table class="table-articles">
- <thead>
- <tr>
- <th>Id</th>
- <th>Titre</th>
- <th>Date de publication</th>
- <th>Etat</th>
- <th>Auteur</th>
- <th>Actions</th>
- </tr>
- </thead>
- <tbody>
- {% for article in articles %}
- {% if is_granted('edit', article) %}
- <tr>
- <td>{{ article.id }}</td>
- <td>{{ article.title }}</td>
- <td>{{ article.publicationDate ? article.publicationDate|date('Y-m-d H:i:s') : '' }}</td>
- <td><span class="badge badge-{{ article.state }}">{{ article.state | trans }}</span></td>
- <td>{{ article.author }}</td>
- <td>
- {% if is_granted('show', article) %}
- <a href="{{ path('app_article_show', {'id': article.id}) }}" class="btn btn-blue">Voir</a>
- {% endif %}
- {% if is_granted('edit', article) %}
- <a href="{{ path('app_article_edit', {'id': article.id}) }}" class="btn btn-blue">Editer</a>
- {% endif %}
- </td>
- </tr>
- {% endif %}
- {% else %}
- <tr>
- <td colspan="4">no records found</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- {{ include('article/_bouton_agrandir.html.twig') }}
- {% endblock %}
|