Appointment Calendar
Filters
Status Legend
Scheduled
Confirmed
Checked In
In Progress
Completed
Cancelled
No Show
Today's Appointments
{% for appointment in todays_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 %}