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

Liste des créneaux Gestion des modèles de créneau
{% for bookingType in bookingTypes %} {% endfor %}
Titre Description Capacité Durée Heure début Heure fin Actions
{{ bookingType.title }} {{ bookingType.description }} {{ bookingType.capacite }} {{ bookingType.duree }} {% if bookingType.heureDebut %}{{ bookingType.heureDebut|date('Y-m-d H:i:s') }}{% endif %} {% if bookingType.heureFin %}{{ bookingType.heureFin|date('Y-m-d H:i:s') }}{% endif %}
{% endblock %}