{% extends 'base.html.twig' %} {% block title %}Vos réservations {% endblock %} {% block body %}

Mes réservations

{% if app.user.reservations | length > 0 %}

{{ app.user.reservations | length }} Réservations :

{% for reservation in app.user.reservations %} {% set annonce = reservation.annonce %}
Photo de l'annonce {{annonce.titre}}
{% set comment = annonce.commentFromUser(app.user) %} {% if comment is not null %} Note donnée : {% include 'includes/rating.html.twig' with {'rating': comment.rating} %} {% else %} Vous n'avez pas encore donné de note Je donne mon avis ! {% endif %}

{{annonce.titre}}

Réservation n°{{reservation.id}}
Du {{reservation.startAt|date('d/m/Y')}} au {{reservation.endAt|date('d/m/Y')}} ({{reservation.amount | number_format(2, ',', ' ')}} DZD)

Plus d'informations
{% if reservation.status == constant('App\\Entity\\Reservation::STATUS_PENDING') %}
En attente
{% endif %} {% if reservation.status == constant('App\\Entity\\Reservation::STATUS_VALIDATION') %}
Validée
{% endif %} {% if reservation.status == constant('App\\Entity\\Reservation::STATUS_CANCELATION') %}
Annulée
{% endif %}
{% endfor %} {% else %}
Vous n'avez pas encore fait de réservations 😥 !
{% endif %}
{% endblock %}