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

Reports

Medical assessment reports and documents

Upload Report
{% if search or status_filter or report_type_filter %} Clear {% endif %}
{% if reports %}
{% for report in reports %} {% endfor %}
Report Case Doctor Status Uploaded Actions
{% if report['file_type'] == 'pdf' %} {% elif report['file_type'] in ['doc', 'docx'] %} {% elif report['file_type'] in ['jpg', 'jpeg', 'png'] %} {% else %} {% endif %}
{{ report['report_title'] }}
{% if report['report_type'] %}
{{ report['report_type'] }}
{% endif %}
{{ report['file_name'] }}
{% if report['file_case_id'] %}
{{ report['file_case_id'] }}
{{ report['claimant_first_name'] }} {{ report['claimant_last_name'] }}
{% else %} Not linked {% endif %}
{{ report['doctor_name'] or 'N/A' }} {% if report['status'] == 'draft' %} Draft {% elif report['status'] == 'final' %} Final {% elif report['status'] == 'sent' %} Sent {% elif report['status'] == 'archived' %} Archived {% endif %} {{ report['uploaded_at'][:10] if report['uploaded_at'] else 'N/A' }}
{% else %}

No Reports Found

{% if search or status_filter or report_type_filter %} No reports match your search criteria. Try adjusting your filters. {% else %} Start by uploading your first report. {% endif %}

Upload First Report
{% endif %} {% endblock %}