{% extends 'base.html.twig' %} {% block title %}Édition des Articles{% endblock %} {% block menu %}Gestion des articles{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
{# messages d'information #} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %}
{{ form_start(form) }}
{{ form_row(form.category) }}
{{ form_end(form) }}
{% if posts.getTotalItemCount == 0 %}
Aucun article publié
{% else %}

Liste des articles

{% endif %}
{% for post in posts %}
{% endfor %}
{% if is_granted('ROLE_ADMIN') %}
Créer un nouvel article
{% endif %} {% endblock %} {% block javascripts %} {% endblock %}