{% extends "base.html" %} {% block title %}Manifests - LSMC Atlas{% endblock %} {% block content %}
{% if manifests %}
{% for manifest in manifests %} {% endfor %}
Manifest # EUID Items Shipment Created Created By Actions
{{ manifest.manifest_number }} {{ manifest.id }} {{ manifest.items_count }} {% if manifest.shipment_id %} {{ manifest.shipment_number or manifest.shipment_id }} {% else %} - {% endif %} {{ manifest.created_at | format_dt(user_preferences) }} {{ manifest.created_by_name or manifest.created_by or '-' }} View
{% else %}

No manifests found.

Upload First Manifest
{% endif %}
{% endblock %}