{% extends 'base.html.twig' %} {% block body %}
Référents Formation Ajouter
{% include "./layouts/message_flash.html.twig" %}
{% if hotelReferents|length == 0 %}

Aucun référent de formation

{% else %}
{% include "./layouts/message_flash.html.twig" %}
{% for hotelReferent in hotelReferents %} {% set hotelsArray = [] %} {% for hotel in hotelReferent.getHotels %} {% set hotelsArray = hotelsArray|merge([{ 'id': hotel.id, 'nom': hotel.nom }]) %} {% endfor %} {% endfor %}
Nom Prénom Fonction Adresse mail Téléphone Hôtels Actions
{{ hotelReferent.nom }} {{ hotelReferent.prenom }} {{ hotelReferent.fonction ? hotelReferent.fonction : "---" }} {{ hotelReferent.email ? hotelReferent.email : "---" }} {{ hotelReferent.telephone ? hotelReferent.telephone : "---" }} {% for hotel in hotelReferent.getHotels %} {{ hotel.nom }}
{% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('referent_formation') }} {{ encore_entry_script_tags('referent_formation_update') }} {% endblock %} {% block modals %} {% include "formation/referents_formation/modals/create.html.twig" %} {% include "formation/referents_formation/modals/update.html.twig" %} {% endblock %}