{% extends 'base.html.twig' %} {% block body %}

Rendez-vous Filtrer et lister

{% for booking in bookings %} {% endfor %}
TITRE CLIENT DATE RDV CONFIRMÉ ACTIONS
{{ booking.titre ?: booking.objet }} {% if booking.client %} {{ booking.client }} {% elseif booking.nom or booking.prenom %} {{ [booking.nom, booking.prenom]|filter(v => v)|join(' ') }} {% else %}-{% endif %} {% if booking.dateTimeDebut %}{{ booking.dateTimeDebut|date('d/m/Y H:i') }}{% endif %} {% if booking.estHonore %}Oui{% else %}Non{% endif %}
{# Booking details modal #} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}