{% extends 'admin/admin.html.twig' %} {% block title %}Les chants{% endblock %} {% block titrepage %} Liste des chants {% endblock %} {% block body %}
Nouveau chant
{% for chant in chants %} {% endfor %}
{{ knp_pagination_sortable(chants, 'Titre', 'c.titre') }} {{ knp_pagination_sortable(chants, 'Compositeur', 'c.compositeur') }} {{ knp_pagination_sortable(chants, 'Arrangeur', 'c.arrangeur') }} {{ knp_pagination_sortable(chants, 'Année', 'c.auteur') }} Actions
{{ chant.titre }} {{ chant.compositeur }} {{ chant.arrangeur }} {{ chant.auteur }}
Editer {% if is_granted('ROLE_ADMIN') %}
{% endif %}
{{ knp_pagination_render(chants) }}
{% endblock %}