{% extends "base.html" %} {% load static %} {% block title %}Lab Orders - {{ block.super }}{% endblock %} {% block content %}

Laboratory Orders

{% for order in page_obj %} {% empty %} {% endfor %}
Order # Patient Tests 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 }}
{% for test in order.tests.all %} {{ test.test_name }} {% if not forloop.last %}
{% endif %} {% endfor %}
{{ 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 == 'COLLECTED' %} Collected {% elif order.status == 'IN_PROGRESS' %} In Progress {% elif order.status == 'COMPLETED' %} Completed {% elif order.status == 'CANCELLED' %} Cancelled {% endif %}
{% if order.status == 'PENDING' %} {% elif order.status == 'SCHEDULED' %} {% endif %}
No lab orders found

No lab orders match your current filters.

{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}