{% extends 'base.html.twig' %} {% block title %}Appointment index{% endblock %} {% block body %} {% if app.request.get('error') %} {% if app.request.get('error') == 'subscription-no-appointment' %} {% endif %} {% endif %}
Rendez-vous
Créer vos propres Rendez-Vous personnels
{% for appointment in appointments %} {% else %} {% endfor %}
ID Title Started_at Ended_at Note actions
{{ appointment.id }} {{ appointment.title }} {{ appointment.startedAt ? appointment.startedAt|date('Y-m-d H:i:s') : '' }} {{ appointment.endedAt ? appointment.endedAt|date('Y-m-d H:i:s') : '' }} {{ appointment.note }} show edit
no records found
{% endblock %}