{% extends 'base.html.twig' %} {% block title %}CONSULTATION D'UN COURS{% endblock %} {% block stylesheets %}{% endblock %} {% block body %}
CONSULTATION D'UN COURS :
{% if is_granted('ROLE_ADMIN') %} {% endif %}
Professeur :{{cours.professeur.nom}} {{cours.professeur.prenom}}
Type d'instrument : {{cours.typeInstruments.libelle}}
Jours : {{cours.jours.libelle}}
Heure de début : {{cours.heuredebut|date('H:i')}}
Heure de fin : {{cours.heurefin|date('H:i')}}
Age Minimum : {{cours.agemini}} ans
Age Maximum : {{cours.agemaxi}} ans
Nombre de places : {{cours.nbplaces}}

LISTE DES ELEVES INSCRITS :

{% if is_granted('ROLE_ADMIN') %}
{% endif %}
{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for inscription in eleveInscrits %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% else %} {% endfor %}
Nom PrénomActions
{{inscription.eleve.prenom}} {{inscription.eleve.nom}}✏️
Aucun élève inscrit.



{% endblock %} {% block javascripts %}{% endblock %}