{% extends "base.html" %} {% block title %}Delivery simulator — SendParcel Demo{% endblock %} {% block page_title %}Delivery simulator{% endblock %} {% block content %}
| ID | Order | Provider | Tracking number | Status | Actions |
|---|---|---|---|---|---|
| {{ shipment.pk }} | #{{ shipment.order.pk }} | {{ shipment.provider }} |
{{ shipment.tracking_number|default:"—" }}
|
{{ shipment.get_status_display }} |
{% if shipment.status == 'label_ready' or shipment.status == 'created' %}
{% endif %}
{% if shipment.status == 'in_transit' %}
{% endif %}
{% if shipment.status == 'out_for_delivery' %}
{% endif %}
{% if shipment.status == 'new' or shipment.status == 'created' or shipment.status == 'label_ready' %}
{% endif %}
|
No shipments
Create an order and a shipment to see them here.