📅 Appointment Management
Schedule Appointment
Patient:
{% for p in patients %}
{{ p.name }}
{% endfor %}
Doctor:
{% for d in doctors %}
{{ d.name }}
{% endfor %}
Date:
Time:
➕ Schedule Appointment
Search Appointment by Date
🔍 Search
All Appointments
{% for a in appointments %}
#{{ a.appointment_id }}
-
{{ a.patient }}
with
{{ a.doctor }}
📅 {{ a.appointment_date }} 🕒 {{ a.appointment_time }}
{% endfor %}