{% extends 'base.html.twig' %} {% block title %}Mes réservations {% endblock %} {% block customNavigation %} {% include "base/nav-customer.html.twig" %} {% endblock %} {% block body %} {{ include("base/ban-customer.html.twig", {name_page: "Vos réservations"}) }}

Les ateliers

Vos réservations

{% if reservations|length > 0 %}
{% for content in reservations %}

{{ content.event.name }}

{{ content.event.description }}


- Détails -

{{ content.event.informations }}

{% endfor %}
{% else %}

Aucune réservation existante.

{% endif %}
{% endblock %}