{% extends 'base.html' %} {% load static %} {% block title %}Imaging Orders{% endblock %} {% block content %}

Imaging Orders

New Order
Clear
{% if imaging_orders %}
{% for order in imaging_orders %} {% endfor %}
Patient Study Modality Priority Status Ordered Provider Actions
{{ order.patient.first_name }} {{ order.patient.last_name }}
MRN: {{ order.patient.mrn }}
{{ order.study_description }} {% if order.body_part %}
{{ order.body_part }} {% endif %}
{{ order.modality }} {{ order.get_priority_display }} {{ order.get_status_display }} {{ order.order_datetime|date:"M d, Y H:i" }} {% if order.ordering_provider %} {{ order.ordering_provider.first_name }} {{ order.ordering_provider.last_name }} {% else %} N/A {% endif %}
{% if order.status == 'PENDING' %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No imaging orders found

Start by creating your first imaging order.

Create First Order
{% endif %}
{% for order in imaging_orders %} {% if order.status == 'PENDING' %} {% endif %} {% endfor %} {% endblock %}