{% extends 'base.html.twig' %} {% block body %}
Vous etes dans les inscriptions des formations en tant qu'employé :
{% if (message) %} {{ message }} {% endif %}

Formations disponibles :

{% for formation in ensFormationNon %}
Formation portant sur : {{ formation.leproduit.libelle }}
Date début de formation : {{ formation.dateDebut|date('d/m/Y') }}
Nombre d'heures totales : {{ formation.nbreHeures }}
Dans le : {{ formation.departement }}
S'inscrire
{% endfor %}

Vous êtes inscrit dans les formations suivantes :

{% for formation in ensFormation %}
Formation portant sur : {{ formation.leproduit.libelle }}
Date début de formation : {{ formation.dateDebut|date('d/m/Y') }}
Nombre d'heures totales : {{ formation.nbreHeures }}
Dans le : {{ formation.departement }}
{% endfor %}
{% endblock %}