{% extends 'base.html.twig' %} {% block body %}
Hôtels
{% if hotels|length == 0 %}

Aucun hôtel

{% else %}
{% include "./layouts/message_flash.html.twig" %}
{% for hotel in hotels %} {% endfor %}
Nom Etoiles Departement Capacité Bureau d'étude Vérifié Actions
{{ hotel.nom }}

{{hotel.nombreEtoiles}}

{% if hotel.adresse %}{{ hotel.adresse.departement }}{% else %}---{% endif %} {% if hotel.capacite %}{{ hotel.capacite }}{% else %}---{% endif %} {% if hotel.bureauEtude %}{{ hotel.bureauEtude }}{% else %}---{% endif %}

{{hotel.verified}}

{% if is_granted('ROLE_ADMIN') %} {% endif %}
{% endif %} {% endblock %} {% block modals %} {% if is_granted('ROLE_ADMIN') %} {% include "./hotel/client/modals/verifications.html.twig" %} {% endif %} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('hotel_datatable') }} {% endblock %}