{% extends "base.html" %} {% load static %} {% block title %} {% if form.instance.pk %}Edit Imaging Order{% else %}New Imaging Order{% endif %} {% endblock %} {% block content %}

{% if form.instance.pk %}Edit Imaging Order{% else %}Create New Imaging Order{% endif %} {% if form.instance.pk %}{{ form.instance.order_number }}{% else %}Complete the form below{% endif %}

{% csrf_token %}

Order Information

{{ form.patient }}
{% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
{{ form.ordering_provider }} {% if form.ordering_provider.errors %}
{{ form.ordering_provider.errors.0 }}
{% endif %}
{{ form.study_type }} {% if form.study_type.errors %}
{{ form.study_type.errors.0 }}
{% endif %}
{{ form.modality }} {% if form.modality.errors %}
{{ form.modality.errors.0 }}
{% endif %}
{{ form.body_part }} {% if form.body_part.errors %}
{{ form.body_part.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.order_date }} {% if form.order_date.errors %}
{{ form.order_date.errors.0 }}
{% endif %}
{{ form.scheduled_date }} {% if form.scheduled_date.errors %}
{{ form.scheduled_date.errors.0 }}
{% endif %}
{{ form.clinical_indication }}
Provide detailed clinical reason for the imaging study
{% if form.clinical_indication.errors %}
{{ form.clinical_indication.errors.0 }}
{% endif %}
{{ form.special_instructions }}
Any special preparation or instructions for the study
{% if form.special_instructions.errors %}
{{ form.special_instructions.errors.0 }}
{% endif %}

Contrast Information

{{ form.contrast_required }}

Resource Assignment

{{ form.equipment }}
Select specific equipment if required
{% if form.equipment.errors %}
{{ form.equipment.errors.0 }}
{% endif %}
{{ form.technologist }}
Assign specific technologist if needed
{% if form.technologist.errors %}
{{ form.technologist.errors.0 }}
{% endif %}
{{ form.room }}
Specify room if required
{% if form.room.errors %}
{{ form.room.errors.0 }}
{% endif %}

Patient Safety Information

{{ form.pregnancy_status }} {% if form.pregnancy_status.errors %}
{{ form.pregnancy_status.errors.0 }}
{% endif %}
{{ form.weight }}
Required for contrast dosing calculations
{% if form.weight.errors %}
{{ form.weight.errors.0 }}
{% endif %}

Ordering Guidelines

  • Check kidney function (eGFR)
  • Review contrast allergies
  • Hold Metformin if needed
  • Ensure adequate hydration

  • CT Abdomen: NPO 4 hours
  • MRI: Remove all metal objects
  • Ultrasound: Specific prep varies
  • Nuclear Medicine: Special instructions

  • STATImmediate (< 1 hour)
  • UrgentSame day (< 8 hours)
  • RoutineWithin 48 hours

Quick Templates

Contact Information

(555) 123-4567
radiology@hospital.com
24/7 Emergency Services
{% endblock %} {% block js %} {% endblock %}