{% include 'partials/header.html.twig' %}

Commentaires Clients

{% if commentairesnonlus|length == 0 %} {% else %}
{% for commentaire in commentairesnonlus %}

{{commentaire.chambre.nom}}

{{commentaire.commentaire}}

{{commentaire.date|date('d/m/Y H:i:s')}}

{% if not commentaire.lu %} {% endif %}
{% endfor %}
{% endif %}
{% if commentaireslus|length == 0 %} {% else %}
{% for commentaire in commentaireslus %}

{{commentaire.chambre.nom}}

{{commentaire.commentaire}}

{{commentaire.date|date('d/m/Y H:i:s')}}

{% if not commentaire.lu %} {% endif %}
{% endfor %}
{% endif %}
{% include 'partials/footer.html.twig' %}