{% extends "base.html" %} {% load static %} {% block title %}Radiology Orders - {{ block.super }}{% endblock %} {% block content %}
| Order # | Patient | Study | Provider | Ordered | Priority | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ order.order_number }}
{% if order.encounter %}
Encounter: {{ order.encounter.id }} {% endif %} |
{{ order.patient.get_full_name }} MRN: {{ order.patient.mrn }} • {{ order.patient.age }}y {{ order.patient.get_gender_display }} |
{{ order.study_description }} {{ order.get_modality_display }} {% if order.clinical_indication %} {{ order.clinical_indication|truncatechars:50 }} {% endif %} |
{{ order.ordering_provider.get_full_name }} | {{ order.order_datetime|date:"M d, Y H:i" }} | {% if order.priority == 'STAT' %} STAT {% elif order.priority == 'URGENT' %} Urgent {% elif order.priority == 'ROUTINE' %} Routine {% endif %} | {% if order.status == 'PENDING' %} Pending {% elif order.status == 'SCHEDULED' %} Scheduled {% elif order.status == 'IN_PROGRESS' %} In Progress {% elif order.status == 'COMPLETED' %} Completed {% elif order.status == 'CANCELLED' %} Cancelled {% endif %} | |
No radiology orders foundNo radiology orders match your current filters. |
|||||||