{% extends "base.html" %} {% set active_nav = "testkits" %} {% block title %}Test Kit {{ testkit.display_label }} - LSMC Atlas{% endblock %} {% block content %}

Kit Information

Operational Label
{{ testkit.display_label }}
Barcode
{{ testkit.kit_barcode or 'Not yet assigned' }}
Type
{{ revision.kit_type or '—' }}
Status
{{ revision.status or 'CREATED' }}
Expiration Date
{{ revision.expiration_date.strftime('%Y-%m-%d') if revision.expiration_date else '—' }}
Origin Site
{% if origin_site %} {% if origin_site_detail_path %} {{ origin_site.name }} {% else %} {{ origin_site.name }} {% endif %} {% else %} — {% endif %}

System Information

Tenant ID
{{ testkit.tenant_id }}
Revision
{{ revision.revision_no }}
Created
{{ testkit.created_at | format_dt(user_preferences) if testkit.created_at else '—' }}

Linked TRFs

{% if linked_trfs %} {% if user.can_write and can_write_in_tenant %}{% endif %} {% for trf in linked_trfs %} {% if user.can_write and can_write_in_tenant %} {% endif %} {% endfor %}
TRF Status Linked
{{ trf.number }} {{ trf.status or '—' }} {{ trf.linked_at | format_dt(user_preferences) if trf.linked_at else '—' }}
{% else %}

No TRFs are linked to this test kit yet.

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

Create Bloom Tube

Create a Bloom tube from this kit. Patient is optional; if set, Atlas also creates a specimen linked to the patient and container.

{% if user.can_write and can_write_in_tenant %}
{% else %}

You do not have write access for this test kit tenant.

{% endif %}
{% include "partials/tube_panel.html" %} {% endblock %}