Détails de l'Hôtel

Nom : {{ hotel.nom }}

Type : {{ hotel.typeHotel }}

Année de construction : {% if hotel.anneeConstruction %} {{ hotel.anneeConstruction }} {% else %} --- {% endif %}

Nombre d'étoiles : {% if hotel.nombreEtoiles %} {% for i in 1..(hotel.nombreEtoiles) %} {% endfor %} {% else %} Non communiqué {% endif %}

SIRET : {{ hotel.siret != "" ? hotel.siret : "---" }}


Nombre de chambre : {% if hotel.nombreChambre %} {{ hotel.nombreChambre }} {% else %} --- {% endif %}

Capacité d'accueil : {% if hotel.capacite %} {{ hotel.capacite }} {% else %} --- {% endif %}


Date référent énergie : {{ hotel.referentEnergieDate ? hotel.referentEnergieDate|date('d/m/Y') : "---" }}

Date référent maintenance : {{ hotel.referentMaintenanceDate ? hotel.referentMaintenanceDate|date('d/m/Y') : "---" }}


Signature Convention : {{ hotel.signatureConvention ? hotel.getDateSignatureString() : 'Non signé' }}

{% if is_granted('ROLE_ADMIN') %} {% if hotel.signatureConvention %} {% endif %} {% endif %}

À participé à BUNGALOW : {% if hotel.participedBungalow1 %} Oui {% else %} Non {% endif %}

Site internet : {% if hotel.site %} Lien vers le site {% else %} Pas de site {% endif %}


Certifications :

{% if hotel.certifications is not empty %} {% for certification in hotel.certifications %} {{ types_certifs[certification] }} {% endfor %} {% else %} Aucune certification disponible {% endif %}

Adresse

{% if hotel.adresse %}

Numéro de voie : {% if hotel.adresse.numero %} {{ hotel.adresse.numero }} {% else %} --- {% endif %}

Rue : {{ hotel.adresse.voie }}

Ville : {{ hotel.adresse.ville }}

Code Postal : {{ hotel.adresse.codePostal }}

Département : {{ hotel.adresse.departement }}

{% if hotel.adresse.region %}

Région : {{ hotel.adresse.region }}

{% endif %} {% if hotel.adresse.typeZone %}

Type de zone : {{ hotel.adresse.typeZone }}

{% endif %}

Coordonnées

Latitude : {{ hotel.adresse.latitude }}

Longitude : {{ hotel.adresse.longitude }}

Altitude : {% if hotel.adresse.altitude %} {{ hotel.adresse.altitude }} {% else %} --- {% endif %}

{% else %}

Aucune adresse disponible

{% endif %}

Nombre de salariés

Administration : {% if hotel.nombreSalarieAdministration %}{{ hotel.nombreSalarieAdministration }}{% else %}---{% endif %}

Hébergement : {% if hotel.nombreSalarieHebergement %}{{ hotel.nombreSalarieHebergement }}{% else %}---{% endif %}

Maintenance : {% if hotel.nombreSalarieMaintenance %}{{ hotel.nombreSalarieMaintenance }}{% else %}---{% endif %}

Restauration : {% if hotel.nombreSalarieRestauration %}{{ hotel.nombreSalarieRestauration }}{% else %}---{% endif %}

Nombre de salariés (Autres)

{% if hotel.salarieAutres %} {% for salarie in hotel.salarieAutres %}

{{ salarie.nom }} : {{ salarie.nombre }}

{% endfor %} {% else %}

Aucun

{% endif %}

Nombre de salariés Total : {% if hotel.nombreSalarie %}{{ hotel.nombreSalarie }}{% else %}---{% endif %}