{% extends "base.html" %} {% set active_nav = "shipments" %} {% block title %}Shipments - LSMC Hub{% endblock %} {% block content %}
Track specimen shipments to the lab
| Tracking # | EUID | Carrier | Contents | Status | Created | |
|---|---|---|---|---|---|---|
| {{ shipment.shipment_number }} | {{ shipment.id }} | {{ shipment.carrier or "—" }} | {{ shipment.kit_count or 0 }} kit{{ 's' if shipment.kit_count != 1 }}, {{ shipment.specimen_count or 0 }} specimen{{ 's' if shipment.specimen_count != 1 }} | {{ shipment.status|replace('_', ' ') }} | {{ shipment.created_at | format_dt(user_preferences) }} | View |
No shipments found
{% if user.can_write %} Create Shipment {% endif %}