{% extends 'base.html' %} {% block content %}
Reserva registrada

Turno confirmado

La reserva fue creada correctamente. Guardá el enlace de gestión para consultar o cancelar el turno si lo necesitás.

Cliente {{ appointment.client_name or '—' }}
Servicio {{ appointment.service.name if appointment.service else '—' }}
Profesional {{ appointment.professional.display_name if appointment.professional else '—' }}
Institución {{ appointment.institution.name if appointment.institution else '—' }}
Sede {{ appointment.branch.display_name if appointment.branch else '—' }}
Fecha {{ appointment.appointment_date.strftime('%d/%m/%Y') if appointment.appointment_date else '—' }}
Hora {{ appointment.start_time.strftime('%H:%M') if appointment.start_time else '—' }}
Gestión pública Abrir enlace
{% endblock %}