{% extends 'base.html.twig' %} {% block body %}
Annuaire Exporter Ajouter
{% if contacts|length == 0 %}

Aucun contact

{% else %}
{% include "./layouts/message_flash.html.twig" %}
{% for contact in contacts %} {% endfor %}
Nom Prénom Fonction Structures Localisation Actions
{{ contact.nom ?? "----" }} {{ contact.prenom ?? "----" }} {{ contact.fonction ?? "----" }} {% if contact.hotels|length > 0 or contact.autreStructure is not empty %}

{% for hotel in contact.hotels %} {{hotel.nom}}{% if not loop.last %}
{% endif %} {% endfor %}

{{contact.autreStructure}}

{% else %} ----- {% endif %}
{% if contact.localisation|length > 0 %} {% for localisation in contact.localisation %} {{localisations[localisation]}}{% if not loop.last %}
{% endif %} {% endfor %} {% else %} ----- {% endif %}
{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('annuaire') }} {% endblock %} {% block modals %} {% include "annuaire/modals/create.html.twig" %} {% include "annuaire/modals/edit.html.twig" %} {% include "annuaire/modals/contacts_from_departement.html.twig" %} {% endblock %}