{% extends 'base.html.twig' %} {% block title %}Reservation index{% endblock %} {% block body %}

Reservation index

{% for reservation in reservations %} {% else %} {% endfor %}
Id Name Phone Depart Arrival DateContact DateDepart Mail Active actions
{{ reservation.id }} {{ reservation.name }} {{ reservation.phone }} {{ reservation.depart }} {{ reservation.arrival }} {{ reservation.dateContact ? reservation.dateContact|date('Y-m-d H:i:s') : '' }} {{ reservation.dateDepart ? reservation.dateDepart|date('Y-m-d H:i:s') : '' }} {{ reservation.mail }} {{ reservation.active ? 'Yes' : 'No' }} show edit
no records found
Create new {% endblock %}