{% if hotels is not empty %} {% for hotel in hotels %} {{ hotel.nom }} {% if hotel.nombreEtoiles == 0 %}

NC

{% else %}

{{ hotel.nombreEtoiles }}

{% endif %}

{% 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 %}

{% endfor %} {% endif %}