{% extends "base.html" %} {% set active_nav = "shipments" %} {% block title %}Tube {{ tube.container_euid }} - LSMC Atlas{% endblock %} {% block content %}

Tube State

Atlas Mirror Status
{{ tube.status }}
Bloom Status
{{ tube.bloom_status or "—" }}
Created In Bloom
{{ tube.bloom_created_at or "—" }}
{% if user.is_internal and tube.bloom_view_url %}
Bloom Object
Open in Bloom
{% endif %}
Test
{% if tube.test %}{{ tube.test.id }}{% else %}—{% endif %}
Shipment
{% if tube.shipment %}{{ tube.shipment.label }}{% else %}—{% endif %}
Test Kit
{% if tube.testkit %}{{ tube.testkit.label }}{% else %}—{% endif %}
Tube Site
{% if tube.site %}{{ tube.site.label }}{% else %}—{% endif %}
Specimen
{% if tube.specimen %}{{ tube.specimen.specimen_euid }}{% else %}Empty{% endif %}

Collection Event

{% if tube.collection_event %}
Patient
{{ tube.collection_event.patient_name or tube.collection_event.patient_euid }}
Collection Site
{{ tube.collection_event.site_euid }}
Collected At
{{ tube.collection_event.collected_at or "—" }}
Collection Type
{{ tube.collection_event.collection_type or "—" }}
Collected By
{{ tube.collection_event.collected_by or "—" }}
Edit Collection Event {% else %}

This tube is still empty.

{% endif %}
{% if user.can_write %}

Update Tube

{% if not tube.collection_event %}

Fill Tube

{% endif %} {% endif %} {% if collection_events %}

Collection Event History

{% endif %} {% endblock %}