Create Appointment Patient {% for p in patients %} {{ p.full_name }} {% endfor %} Doctor {% for d in doctors %} {{ d.full_name }} {% endfor %} Date and time Duration (minutes) Reason 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 }} {% for status in statuses %} {{ status }} {% endfor %} Update status Reschedule {% endfor %}