{% extends "base.html" %} {% block title %}Appointments - Vera Medical CRM{% endblock %} {% block content %}

Appointments

Medical assessment appointments and scheduling

{% if search or status_filter or date_filter %} Clear {% endif %}
{% if appointments %}
{% for appt in appointments %} {% endfor %}
Date & Time Case & Claimant Doctor & Location Service Code Status Letters Actions
{{ appt['appointment_date']|format_date }}
{{ appt['appointment_time'] or 'No time set' }}
Case #{{ appt['file_case_id'] or 'N/A' }}
{{ appt['claimant_first_name'] }} {{ appt['claimant_last_name'] }}
{% if appt['client_company_name'] %}
{{ appt['client_company_name'] }}
{% endif %}
{{ appt['doctor_name'] or 'Not assigned' }}
{% if appt['specialist_number'] %}
#{{ appt['specialist_number'] }}
{% endif %} {% if appt['location'] %}
{{ appt['location'] }}
{% endif %}
{{ appt['service_code'] or 'N/A' }} {% if appt['status'] == 'scheduled' %} Scheduled {% elif appt['status'] == 'completed' %} Completed {% elif appt['status'] == 'cancelled' %} Cancelled {% elif appt['status'] == 'no-show' %} No-Show {% endif %} {% if appt['invoiced'] == 1 %}
Invoiced
{% endif %}
{% if appt['letter_count'] and appt['letter_count'] > 0 %} {{ appt['letter_count'] }} {% else %} - {% endif %}
{% else %}

No Appointments Found

{% if search or status_filter or date_filter %} No appointments match your search criteria. Try adjusting your filters. {% else %} Get started by scheduling your first appointment. {% endif %}

Schedule First Appointment
{% endif %} {% endblock %}