{# Compact partial for booking details shown inside a modal via AJAX #}
| Référence | {{ booking.reference }} |
|---|---|
| Titre | {{ booking.titre }} |
| Objet | {{ booking.objet }} |
| Description | {{ booking.description }} |
| Date RDV | {% if booking.dateDebut %}{{ booking.dateDebut|date('d-m-Y H:i') }}{% endif %} |
| Statut | {{ booking.estHonore ? 'Confirmé' : 'Non confirmé' }} |
| Client | {% if booking.client %} {{ booking.client.raisonSociale }} {% if booking.client.telephone %} · {{ booking.client.telephone }} {% endif %} {% if booking.client.email %} · {{ booking.client.email }} {% endif %} {% else %} {{ booking.nom }} {{ booking.prenom }} {% endif %} |
| Véhicule | {% if booking.vehicule %} {{ booking.vehicule.immatriculation|default(booking.vehicule.numChassis|default(booking.vehicule.reference)) }} {% if booking.vehicule.marque or booking.vehicule.modele %} · {{ booking.vehicule.marque }} {{ booking.vehicule.modele }} {% endif %} {% else %} {{ booking.chassis }} {% endif %} |