{% extends "base.html" %} {% load static %} {% block title %}Imaging Studies{% endblock %} {% block content %}

Imaging Studies Manage and monitor imaging studies

{{ total_studies|default:0 }}

Total Studies

{{ in_progress_studies|default:0 }}

In Progress

{{ pending_studies|default:0 }}

Pending

{{ overdue_studies|default:0 }}

Overdue

Filters & Search

Imaging Studies {% if object_list %} {{ object_list|length }} {% endif %}

{% if object_list %}
{% for study in object_list %} {% endfor %}
Study ID Patient Study Type Modality Priority Status Technologist Start Time Duration Actions
{{ study.study_id }}
{{ study.patient.get_full_name }}
MRN: {{ study.patient.medical_record_number }}
{{ study.study_type }} {{ study.modality }} {% if study.priority == 'stat' %} STAT {% elif study.priority == 'urgent' %} Urgent {% else %} Routine {% endif %} {% if study.status == 'pending' %} Pending {% elif study.status == 'in_progress' %} In Progress {% elif study.status == 'completed' %} Completed {% elif study.status == 'cancelled' %} Cancelled {% elif study.status == 'on_hold' %} On Hold {% endif %} {% if study.technologist %} {{ study.technologist.get_full_name }} {% else %} Not assigned {% endif %} {% if study.start_time %} {{ study.start_time|date:"M d, Y g:i A" }} {% else %} Not started {% endif %} {% if study.duration %} {{ study.duration }} min {% else %} - {% endif %}
{% if study.status == 'pending' %} {% elif study.status == 'in_progress' %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No imaging studies found

No studies match your current filters.

{% endif %}
{% endblock %} {% block js %} {% endblock %}