{% extends "base.html" %} {% block title %}Shipment {{ shipment.id }}{% endblock %} {% block content %}

Shipment status

Status
{{ shipment.status }}
Provider
{{ shipment.provider }}
External ID
{{ shipment.external_id }}
Tracking number
{{ shipment.tracking_number }}
Label
{% if shipment.label_url %} Download label {% else %} None {% endif %}
{% if shipment.status not in ('delivered', 'cancelled', 'failed', 'returned') %}

Delivery simulator

Click the button to advance to the next delivery stage. The simulator will send an HTTP callback to the application.

{% endif %} {% endblock %}