{% extends 'base.html.twig' %} {% block page_title %} Articles | BO {% endblock %} {% block name_title_page_top %} Les Articles {% endblock %} {% block real_page_content %}

Articles

{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('danger') %} {% endfor %}
{% if articles is empty %}

Aucun article pour le moment

Créer le premier article
{% else %}
{% for article in articles %} {% endfor %}
Titre Slug Statut Date de création Actions
{{ article.title }} {{ article.slug }} {% if article.published %} Publié {% else %} Brouillon {% endif %} {{ article.createdAt|date('d/m/Y H:i') }} {# Modal de confirmation de suppression #}
{% endif %}
{% endblock %}