{% extends 'base.html.twig' %} {% block body %}
Prospections
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_PROSPECT') %} Prospections masse {% endif %} Ajouter
{% if hotels|length == 0 %}

Aucun hôtel prospecté

{% else %}
{% include "./layouts/message_flash.html.twig" %} {% include "./index/filtres/prospections.html.twig" %}
{% for hotel in hotels %} {% endfor %}
Nom Etoiles Departement Statut Remarques Actions
{{ hotel.nom }}

{{hotel.nombreEtoiles}}

{% if hotel.adresse and hotel.adresse.departement %}{{ hotel.adresse.departement }}{% else %}---{% endif %}

{% if hotel.lastProspection %}{{ hotel.lastProspection.statut }}{% else %}---{% endif %}

{% if hotel.lastProspection and hotel.lastProspection.remarques %}{{ hotel.lastProspection.remarques }}{% else %}---{% endif %}

{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('prospection_datatable') }} {% endblock %} {% block modals %} {% include "./index/prospections_modals/prospections_masse.html.twig" %} {% endblock %}