{% extends 'base.html.twig' %} {% block title %}Appointment{% endblock %} {% block body %}
Id | {{ appointment.id }} |
---|---|
LastName | {{ appointment.lastName }} |
FirstName | {{ appointment.firstName }} |
{{ appointment.email }} | |
Reason | {{ appointment.reason }} |
Comment | {{ appointment.comment }} |
ReservedAt | {{ appointment.reservedAt ? appointment.reservedAt|date('Y-m-d H:i:s') : '' }} |