{% extends "base.html" %} {% load static %} {% block title %}Imaging Study Detail - {{ study.accession_number }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

Imaging Study: {{ study.accession_number }}

{{ study.study_description }}

Modality: {{ study.get_modality_display }} | Body Part: {{ study.get_body_part_display }} | Priority: {{ study.get_priority_display }}

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

{{ study.get_status_display }}
Patient Information
{{ study.patient.first_name.0 }}{{ study.patient.last_name.0 }}
{{ study.patient.get_full_name }}
{{ study.patient.patient_id }}
Date of Birth {{ study.patient.date_of_birth|date:"M d, Y" }}
Age {{ study.patient.age }} years
Gender {{ study.patient.get_gender_display }}
MRN {{ study.patient.medical_record_number }}
{% if study.clinical_indication %}
Clinical Indication

{{ study.clinical_indication }}

{% endif %}
Study Details
Study Instance UID {{ study.study_instance_uid }}
Series Count {{ study.number_of_series }}
Images Count {{ study.number_of_instances }}
Study Size {{ study.study_size|filesizeformat }}
Image Quality {{ study.get_image_quality_display|default:"Not Assessed" }}
{% if study.equipment_info %}
Equipment

{{ study.manufacturer }} {{ study.model_name }}

Station: {{ study.station_name }}
{% endif %}
Providers
Referring Physician
{{ study.referring_physician.first_name.0 }}{{ study.referring_physician.last_name.0 }}
{{ study.referring_physician.get_full_name }}
{% if study.radiologist %}
Radiologist
{{ study.radiologist.first_name.0 }}{{ study.radiologist.last_name.0 }}
{{ study.radiologist.get_full_name }}
{% endif %} {% if study.encounter %} {% endif %}
Series and Images
{% if study.series.exists %}
{% for series in study.series.all %} {% endfor %}
Series # Description Modality Images Size Quality Actions
{{ series.series_number }} {{ series.series_description|default:"No description" }} {{ series.get_modality_display }} {{ series.number_of_instances }} {{ series.series_size|filesizeformat }} {{ series.get_image_quality_display|default:"Not Assessed" }} View
{% else %}

No series available for this study.

{% endif %}
{% if study.report %}
Radiology Report
{{ study.report.get_status_display }} View Full Report
{% if study.report.findings %}
Findings:

{{ study.report.findings|truncatewords:50 }}

{% endif %} {% if study.report.impression %}
Impression:

{{ study.report.impression|truncatewords:30 }}

{% endif %}
Radiologist

{{ study.report.radiologist.get_full_name }}

{% if study.report.signed_datetime %} Signed

{{ study.report.signed_datetime|date:"M d, Y g:i A" }}

{% endif %}
{% endif %}
{% endblock %}