{% extends 'edc_dashboard/base.html' %} {% load static %} {% block main %} {{ block.super }}
 
DICOM Review Queue Back
{% for session in sessions %} {% empty %} {% endfor %}
Subject Session date OD files OS files
{{ session.subject_identifier }} {{ session.report_datetime|date:"Y-m-d H:i" }} {% with od_count=session.files.all|dictsort:"file_type" %} {{ od_count|length }} {% endwith %} {% with os_count=session.files.all|dictsort:"file_type" %} {{ os_count|length }} {% endwith %} Review
No sessions awaiting review.
 
{% endblock main %}