{% extends "base.html" %} {% block title %}Gestionar Cita{% endblock %} {% block content %}

Gestionar tu Cita

{{ appointment.appointment_type.name }}

con {{ appointment.user.get_full_name }}

Fecha: {{ appointment.date|date:"d/m/Y" }}

Hora: {{ appointment.start_time|time:"H:i" }}

Estado: {{ appointment.get_status_display }}

{% if appointment.status == 'confirmed' %}
{% csrf_token %}

Para reprogramar, por ahora por favor cancela la actual y reserva una nueva.

{% else %}
Esta cita ya no puede ser modificada (Estado: {{ appointment.get_status_display }}).
{% endif %}
{% endblock %}