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

BookingTable

Id {{ booking_table.id }}
DataPrenotazione {{ booking_table.dataPrenotazione ? booking_table.dataPrenotazione|date('Y-m-d') : '' }}
OraPrenotazione {{ booking_table.oraPrenotazione ? booking_table.oraPrenotazione|date('H:i:s') : '' }}
NumeroPersone {{ booking_table.numeroPersone }}
NomeCognome {{ booking_table.nomeCognome }}
Email {{ booking_table.email }}
Phone {{ booking_table.phone }}
NotePrenotazione {{ booking_table.notePrenotazione }}
back to list edit {{ include('booking_table/_delete_form.html.twig') }} {% endblock %}