{% extends "base.html" %} {% block title %}Home - Shipping demo{% endblock %} {% block content %} {% if shipments %}
{% for shipment in shipments %} {% endfor %}
ID Reference Provider Receiver Status
{{ shipment.id }} {{ shipment.reference_id or "—" }} {{ shipment.provider }} {{ shipment.receiver_name or "—" }} {{ status_label(shipment.status) }} Details
{% else %}

No shipments yet

Create your first shipment to get started.

New shipment
{% endif %} {% endblock %}