{% extends 'base.html.twig' %} {% set titre ='Liste des réservations' %} {% block title %} {{ titre }} {% endblock %} {% block body %}

{{ titre }}

{% for booking in bookings %} {% else %} {% endfor %}
Numéro Date réservation Client Trajet Nb places Montant total Actions
{{ booking.numdossier }} {{ booking.dateOfBooking ? booking.dateOfBooking|date('Y-m-d H:i:s') : '' }} {{ booking.user }} {{ booking.schedule }} {{ booking.numberOfSeats }} {{ booking.totalAmount }} Détails {% if booking.facture != null %} Payment Pdf {% endif %}
no records found
{%do bookings.setPageRange(3)%} {{knp_pagination_render(bookings, 'pagination.html.twig')}}
{% endblock %} {% block footer %} {{ include('footer.html.twig') }} {% endblock %}