{% extends "base.html" %} {% load static %} {% block title %}Imaging Order - {{ object.order_number }}{% endblock %} {% block content %}
This is an urgent imaging order requiring immediate attention.
This is a STAT order requiring immediate processing.
| Order Number: | {{ object.order_number }} |
| Study Type: | {{ object.study_description }} |
| Body Part: | {{ object.body_part }} |
| Modality: | {{ object.modality }} |
| Priority: | {% if object.priority == 'STAT' %} STAT {% elif object.priority == 'URGENT' %} Urgent {% elif object.priority == 'ROUTINE' %} Routine {% elif object.priority == 'EMERGENCY' %} Emergency {% endif %} |
| Status: | {% if object.status == 'PENDING' %} Pending {% elif object.status == 'SCHEDULED' %} Scheduled {% elif object.status == 'IN_PROGRESS' %} In Progress {% elif object.status == 'ON_HOLD' %} On Hold {% elif object.status == 'COMPLETED' %} Completed {% elif object.status == 'CANCELLED' %} Cancelled {% endif %} |
| Ordering Provider: | {{ object.ordering_provider.get_full_name }} |
| Order Date: | {{ object.order_date|date:"M d, Y g:i A" }} |
| Scheduled Date: | {% if object.scheduled_date %} {{ object.scheduled_date|date:"M d, Y g:i A" }} {% else %} Not scheduled {% endif %} |
| Equipment: | {% if object.equipment %} {{ object.equipment.name }} {% else %} Not assigned {% endif %} |
| Technologist: | {% if object.technologist %} {{ object.technologist.get_full_name }} {% else %} Not assigned {% endif %} |
| Room: | {% if object.room %} {{ object.room }} {% else %} Not assigned {% endif %} |
Contrast Required: Yes
{% if object.contrast_type %}Contrast Type: {{ object.contrast_type }}
{% endif %} {% if object.contrast_amount %}Amount: {{ object.contrast_amount }}
{% endif %}| Name: | {{ object.patient.get_full_name }} |
| MRN: | {{ object.patient.mrn }} |
| DOB: | {{ object.patient.date_of_birth|date:"M d, Y" }} |
| Age: | {{ object.patient.age }} years |
| Gender: | {{ object.patient.gender|title }} |
| Weight: | {% if object.patient.weight %} {{ object.patient.weight }} kg {% else %} Not recorded {% endif %} |
| Allergies: | {% if object.patient.allergies %} {{ object.patient.allergies }} {% else %} No known allergies {% endif %} |
| Pregnancy: | {% if object.pregnancy_status %} {{ object.pregnancy_status }} {% else %} Not applicable {% endif %} |
Started: {{ study.start_time|date:"M d, Y g:i A" }}
{% if study.end_time %}
Completed: {{ study.end_time|date:"M d, Y g:i A" }}
{% endif %}
Radiologist: {{ report.radiologist.get_full_name }}
Findings:
{{ object.equipment.model }}
{{ object.equipment.location }}{{ note.content|truncatechars:100 }}