{% extends "base.html" %} {% load static %} {% block title %}Lab Orders - {{ block.super }}{% endblock %} {% block content %}
| 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 %} | |
No lab orders foundNo lab orders match your current filters. |
|||||||