Appointment Calendar
Filters
Status Legend
Scheduled
Confirmed
Checked In
In Progress
Completed
Cancelled
No Show
Today's Appointments
{% for appointment in appointments %}
{% empty %}
{{ appointment.appointment_time|time:"g:i A" }}
{{ appointment.patient.first_name }} {{ appointment.patient.last_name }}
{{ appointment.provider.first_name }} {{ appointment.provider.last_name }}
{% if appointment.status == 'SCHEDULED' %}
Scheduled
{% elif appointment.status == 'CONFIRMED' %}
Confirmed
{% elif appointment.status == 'CHECKED_IN' %}
Checked In
{% elif appointment.status == 'IN_PROGRESS' %}
In Progress
{% elif appointment.status == 'COMPLETED' %}
Completed
{% elif appointment.status == 'CANCELLED' %}
Cancelled
{% elif appointment.status == 'NO_SHOW' %}
No Show
{% endif %}
No appointments today
{% endfor %}