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

Create Appointment

All Appointments

{% for item in appointments %}
#{{ item.id }} · {{ user_lookup.get(item.patient_id, 'Patient') }} → {{ user_lookup.get(item.doctor_id, 'Doctor') }}
{{ item.scheduled_time }} · {{ item.status.value }}
{% endfor %}
{% endblock %}