{% extends 'base.html' %} {% load static %} {% block title %}Appointment Calendar{% endblock %} {% block css %} {% endblock %} {% block content %}

Appointment Calendar

Filters

Status Legend

Scheduled
Confirmed
Checked In
In Progress
Completed
Cancelled
No Show

Today's Appointments

{% for appointment in appointments %}
{{ 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 %}
{% empty %}

No appointments today

{% endfor %}
{% endblock %} {% block js %} {% endblock %}