{% extends "base.html" %} {% load static %} {% block title %}DICOM Viewer{% if study %} - {{ study.patient.get_full_name }}{% endif %}{% endblock %} {% block css %} {% endblock %} {% block content %}

DICOM Viewer

{% if study %} Back to Study {% endif %}
{% if study %}
{{ study.patient.get_full_name }}
ID: {{ study.patient.patient_id }}
DOB: {{ study.patient.date_of_birth|date:"M d, Y" }}
Gender: {{ study.patient.get_gender_display }}
{% endif %} {% if study %}
{{ study.modality }}
{{ study.study_date|date:"M d, Y" }}
{{ study.description|default:"No description" }}
Accession: {{ study.accession_number }}
{% endif %}
Loading...
Loading DICOM images...
Series
{% if series_list %} {% for series in series_list %}
{{ series.series_number }}
{{ series.description|truncatechars:20 }}
{{ series.image_count }} images
{% endfor %} {% else %}
No series available
{% endif %}
1/1
400
40
{% endblock %}