{% extends 'base.html.twig' %} {% block title %}Liste des inscriptions{% endblock %} {% block body %}

Liste des inscriptions

{% if is_granted('ROLE_GEST') %} Ajouter une inscription {% endif %} {% for i in pInscription %} {% else %} {% endfor %}
Date d'Inscription Cours Eleve Actions
{{ i.dateInscription|date("d/m/Y")}} {{ i.cours.libelle }} {{ i.eleve.nom }} Consulter {% if is_granted('ROLE_GEST') %} Modifier {% endif %} {% if is_granted('ROLE_ADMIN') %} Supprimer {% endif %}
Aucune inscription n'a été trouvée.
{% endblock %} {% block javascripts %}{% endblock %}