{% extends "base.html" %} {% load static %} {% block title %}Imaging Studies{% endblock %} {% block content %}
| 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 %} |
No studies match your current filters.