{% extends "base.html" %} {% block title %}Manifest {{ manifest.manifest_number }} - LSMC Atlas{% endblock %} {% block content %}

Manifest Details

Manifest Number:
{{ manifest.manifest_number }}
Items Count:
{{ manifest.items_count }}
{% if manifest.shipment_id %}
Shipment:
{{ manifest.shipment_number or manifest.shipment_id }}
{% endif %}
Created:
{{ manifest.created_at | format_dt(user_preferences) }}
Created By:
{{ manifest.created_by_name or manifest.created_by or '-' }}

Manifest Items

{% if manifest_items %}
{% for item in manifest_items %} {% endfor %}
Specimen Barcode Type Patient ID TRF EUID Collection Date Notes Status
{{ item.specimen_barcode }} {{ item.specimen_type or '-' }} {% if item.patient_id %} {{ item.patient_id }} {% else %} - {% endif %} {% if item.trf_euid %} {{ item.trf_euid }} {% else %} - {% endif %} {{ item.collection_date or '-' }} {{ item.notes or '-' }} Imported
{% else %}

No items in this manifest

{% endif %}
{% endblock %}