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

Report Details

{{ report['report_title'] }}

{% if report['form_html_content'] %} Edit Letter {% endif %} Print Cover Download Back to List

Report Information

Report Title

{{ report['report_title'] }}

Report Type

{{ report['report_type'] or 'N/A' }}

Report Date

{{ report['report_date']|format_date }}

Status

{% if report['status'] == 'draft' %} Draft {% elif report['status'] == 'final' %} Final {% elif report['status'] == 'sent' %} Sent {% elif report['status'] == 'archived' %} Archived {% endif %}

Uploaded By

{{ report['uploaded_by'] or 'System' }}

{% if report['description'] %}

Description

{{ report['description'] }}

{% endif %} {% if report['notes'] %}

Notes

{{ report['notes'] }}

{% endif %}
{% if report['form_html_content'] %}

Generated Letter Preview

This preview renders the saved template exactly as stored. Use the download button for the original file.
{% endif %}

File Information

File Name

{{ report['file_name'] }}

File Type

{{ report['file_type'] }}

File Size

{{ (report['file_size'] / 1024 / 1024)|round(2) }} MB

Uploaded Date

{{ report['uploaded_at'][:10] if report['uploaded_at'] else 'N/A' }}

{% if report['file_case_id'] %}

Linked Case

Case #{{ report['file_case_id'] }}

{% if report['claimant_first_name'] %}

{{ report['claimant_first_name'] }} {{ report['claimant_last_name'] }}

{% endif %} {% if report['client_company_name'] %}

Client

{{ report['client_company_name'] }}

{% endif %}
{% endif %} {% if report['doctor_name'] %}

Assessing Doctor

{{ report['doctor_name'] }}

{% endif %}
{% if report['form_html_content'] %} {% endif %}
{% endblock %}