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

๐Ÿ“… Appointment Scheduling

Schedule/Edit Appointment

Leave empty to auto-generate

Upcoming Appointments

{% if appointments %}
{% for appointment in appointments %} {% endfor %}
ID Patient Doctor Date Time Status
{{ appointment[0] }} {{ appointment[1] }} {{ appointment[2] }} {{ appointment[3] }} {{ appointment[4] }} {{ appointment[5] }}
{% else %}

No appointments found. Schedule your first appointment!

{% endif %}
{% endblock %}