{% extends "base.html" %} {% set active_nav = "trfs" %} {% block title %}Edit TRF {{ order.order_number }} - LSMC Atlas{% endblock %} {% block content %}

Patients

{% set links = patient_links if patient_links is defined and patient_links else [] %} {% if not links and order.patient_id %} {% set links = [{'patient_id': order.patient_id, 'role': 'PROBAND'}] %} {% endif %} {% if not links %} {% set links = [{'patient_id': '', 'role': 'PROBAND'}] %} {% endif %} {% for link in links %}
{% endfor %}

Ordering Clinician

Tests Ordered

{% if existing_test_orders %}

Existing Tests (cannot be modified):

{% for to in existing_test_orders %}
{{ to.fulfillment_route_code }} Specimen: {{ to.specimen_type }} {% if to.clinical_notes %} Notes: {{ to.clinical_notes }} {% endif %}
{% endfor %}
{% endif %}

Additional Notes

Cancel
{% endblock %}