Vera Medical CRM

Medical Assessment Appointments

Phone: (XXX) XXX-XXXX | Email: info@veramedical.com

Appointment Details

Case Reference: {{ appointment['file_case_id'] }}

Printed: {{ now().strftime('%B %d, %Y') }}

📅 Appointment Information

Date
{{ appointment['appointment_date']|format_date }}
Time
{{ appointment['appointment_time'] or 'Not specified' }}
Status
{% if appointment['status'] == 'scheduled' %} Scheduled {% elif appointment['status'] == 'completed' %} Completed {% elif appointment['status'] == 'cancelled' %} Cancelled {% elif appointment['status'] == 'no-show' %} No-Show {% endif %}
{% if appointment['reference'] %}
Reference Number
{{ appointment['reference'] }}
{% endif %}

👤 Patient Information

Patient Name
{{ appointment['claimant_first_name'] }} {{ appointment['claimant_last_name'] }}
Case Number
{{ appointment['file_case_id'] }}
{% if appointment['client_company_name'] %}
Insurance/Client
{{ appointment['client_company_name'] }}
{% endif %}

🏥 Doctor & Location Information

Doctor/Specialist
{{ appointment['doctor_name'] or 'Not assigned' }}
{% if appointment['specialist_number'] %}
Specialist Number
{{ appointment['specialist_number'] }}
{% endif %} {% if appointment['location'] %}
Location
📍 {{ appointment['location'] }}
{% endif %}

📋 Assessment Details

{% if appointment['service_code'] %}
Service Code
{{ appointment['service_code'] }}
{% endif %} {% if appointment['assessment_type'] %}
Assessment Type
{{ appointment['assessment_type'] }}
{% endif %} {% if appointment['description'] %}
Description
{{ appointment['description'] }}
{% endif %}

📆 Important Dates

{% if appointment['date_confirmed'] %}
Date Confirmed
{{ appointment['date_confirmed']|format_date }}
{% endif %} {% if appointment['date_received'] %}
Date Received
{{ appointment['date_received']|format_date }}
{% endif %} {% if appointment['date_released'] %}
Date Released
{{ appointment['date_released']|format_date }}
{% endif %}
{% if appointment['notes'] %}

📝 Additional Notes

{{ appointment['notes'] }}
{% endif %} {% if letters and letters|length > 0 %}

📎 Attached Documents

{% for letter in letters %} {% endfor %}
Document Name Type Date
{{ letter['file_name'] }} {{ letter['letter_type']|title or 'N/A' }} {{ letter['uploaded_at'][:10] if letter['uploaded_at'] else 'N/A' }}
{% endif %}