{% extends "base.html" %} {% block title %}Report Details - Vera Medical CRM{% endblock %} {% block content %}
{{ report['report_title'] }}
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' }}
Description
{{ report['description'] }}
Notes
{{ report['notes'] }}
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' }}
Case #{{ report['file_case_id'] }}
{% if report['claimant_first_name'] %}{{ report['claimant_first_name'] }} {{ report['claimant_last_name'] }}
Client
{{ report['client_company_name'] }}
{{ report['doctor_name'] }}