{% extends 'base.html.twig' %} {% set titre ='Réservation' %} {% block title %}{% endblock %} {% block body %}

{{ titre }} {{ booking.numdossier }}

{% set i = 0 %} {% for scheduleSiege in scheduleSieges %} {% endfor %}
{% if scheduleSiege.siege is null %} XXX {% else %} {{ scheduleSiege.siege.name }} {% endif %} - {{ scheduleSiege.passager.lastname }} {{ scheduleSiege.passager.firstname }}
{{ booking.schedule.company }}
{% if booking.schedule.company.image is null %} {% else %} {% endif %}
{% for conf in booking.schedule.bus.conforts %} {{conf.description}} {% endfor %}
{{ booking.schedule.scheduleDate ? booking.schedule.scheduleDate|format_datetime('full', 'none', locale='fr') }}
{{ booking.schedule.departureTime ? booking.schedule.departureTime|date('H:i') : '' }} {# #} {{ booking.schedule.depart }}
{{ booking.schedule.estimatedArrivalTime ? booking.schedule.estimatedArrivalTime|date('H:i') : '' }} {# #} {{ booking.schedule.arrivee }}
{% if booking.status %} {% else %} {% endif %}
Montant : {{ booking.totalAmount }} {{ booking.status.currency }} Transaction : {{ booking.status.financialTransactionId }}
Status de la transaction Non payée
Imprimer la facture
Modifier (une seule fois)
{% endblock %} {% block footer %} {{ include('footer.html.twig') }} {% endblock %}