{% extends "base.html" %} {% load static %} {% block title %}Radiology Report - {{ report.report_id }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

Radiology Report

{{ report.study.study_description }}

Accession Number: {{ report.study.accession_number }} | Study Date: {{ report.study.study_datetime|date:"M d, Y g:i A" }}

Patient: {{ report.study.patient.get_full_name }} ({{ report.study.patient.patient_id }})

{{ report.get_status_display }}
{% if report.has_critical_findings %}
Critical Findings
{% endif %}
{% if report.clinical_history %}
Clinical History

{{ report.clinical_history|linebreaks }}

{% endif %} {% if report.technique %}
Technique

{{ report.technique|linebreaks }}

{% endif %}
Findings
{% if report.findings %}
{{ report.findings|linebreaks }}
{% else %}

No findings documented.

{% endif %}
Impression
{% if report.impression %}
{{ report.impression|linebreaks }}
{% else %}

No impression documented.

{% endif %}
{% if report.recommendations %}
Recommendations

{{ report.recommendations|linebreaks }}

{% endif %} {% if report.critical_findings %}
Critical Findings

{{ report.critical_findings|linebreaks }}

{% if report.critical_notification_sent %}
Critical finding notification sent at {{ report.critical_notification_datetime|date:"M d, Y g:i A" }}
{% endif %}
{% endif %}
Report Information
Report ID {{ report.report_id }}
Status {{ report.get_status_display }}
Priority {{ report.study.get_priority_display }}
Created {{ report.created_datetime|date:"M d, Y g:i A" }}
{% if report.dictated_datetime %}
Dictated {{ report.dictated_datetime|date:"M d, Y g:i A" }}
{% endif %} {% if report.signed_datetime %}
Signed {{ report.signed_datetime|date:"M d, Y g:i A" }}
{% endif %}
Radiologist
{{ report.radiologist.first_name.0 }}{{ report.radiologist.last_name.0 }}
{{ report.radiologist.get_full_name }}
Interpreting Radiologist
{% if report.dictated_by and report.dictated_by != report.radiologist %}
{{ report.dictated_by.first_name.0 }}{{ report.dictated_by.last_name.0 }}
{{ report.dictated_by.get_full_name }}
Dictated By
{% endif %} {% if report.transcribed_by %}
{{ report.transcribed_by.first_name.0 }}{{ report.transcribed_by.last_name.0 }}
{{ report.transcribed_by.get_full_name }}
Transcribed By
{% endif %}
Study Information
Modality {{ report.study.get_modality_display }}
Body Part {{ report.study.get_body_part_display }}
Series {{ report.study.number_of_series }}
Images {{ report.study.number_of_instances }}
Study Size {{ report.study.study_size|filesizeformat }}
Patient Information
{{ report.study.patient.first_name.0 }}{{ report.study.patient.last_name.0 }}
{{ report.study.patient.get_full_name }}
{{ report.study.patient.patient_id }}
DOB {{ report.study.patient.date_of_birth|date:"M d, Y" }}
Age {{ report.study.patient.age }} years
Gender {{ report.study.patient.get_gender_display }}
MRN {{ report.study.patient.medical_record_number }}
{% endblock %}