{% extends "base.html" %} {% set active_nav = "shipments" %} {% block title %}Shipments - LSMC Hub{% endblock %} {% block content %}
{{ shipments|length }} shipments
{% if shipments %}
{% for shipment in shipments %} {% endfor %}
Shipment # 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.collection_count or 0 }} collection{{ 's' if shipment.collection_count != 1 }}) {{ shipment.status|replace('_', ' ') }} {{ shipment.created_at | format_dt(user_preferences) }} View
{% else %}
📦

No shipments found

{% if user.can_write %} Create Shipment {% endif %}
{% endif %}
{% endblock %}