{% extends "base.html" %} {% load static %} {% block title %}Appointment Requests - Appointments{% endblock %} {% block content %}

Appointment Requests

New Request
{{ search_form.appointment_type }}
{{ search_form.status }}
{{ search_form.priority }}
{{ search_form.provider }}
{{ search_form.date_from }}
{{ search_form.date_to }}
{{ search_form.department }}
{{ search_form.is_telemedicine }}
Clear
Appointment Requests {{ object_list.count }}
{% if object_list %}
{% for appointment in object_list %} {% endfor %}
Patient Provider Date & Time Type Status Priority Actions
{{ appointment.patient.first_name.0 }}{{ appointment.patient.last_name.0 }}
{{ appointment.patient.get_full_name }}
{{ appointment.patient.patient_id }}
{{ appointment.provider.get_full_name }}
{{ appointment.department|default:"General" }}
{{ appointment.scheduled_datetime|date:"M d, Y" }}
{{ appointment.scheduled_datetime|time:"g:i A" }}
{{ appointment.get_appointment_type_display }} {% if appointment.is_telemedicine %}
Virtual {% endif %}
{{ appointment.get_status_display }} {{ appointment.get_priority_display }}
{% else %}
No Appointment Requests Found

No appointment requests match your current filters.

Create First Request
{% endif %}
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}