{% extends "base.html" %} {% block title %}Shipment #{{ shipment.pk }} - Demo SendParcel{% endblock %} {% block page_title %}Shipment #{{ shipment.pk }}{% endblock %} {% block content %}

Shipment details

Reference ID
{{ shipment.reference_id|default:"—" }}
Provider
{{ shipment.provider }}
External ID
{{ shipment.external_id|default:"—" }}
Tracking number
{{ shipment.tracking_number|default:"—" }}
Created at
{{ shipment.created_at|date:"d.m.Y H:i" }}
Addresses

Sender

{{ shipment.sender_name }}
{{ shipment.sender_street }}
{{ shipment.sender_postal_code }} {{ shipment.sender_city }}
{{ shipment.sender_country_code }}

Receiver

{{ shipment.receiver_name }}
{{ shipment.receiver_street }}
{{ shipment.receiver_postal_code }} {{ shipment.receiver_city }}
{{ shipment.receiver_country_code }}
Parcel
Weight
{{ shipment.weight }} kg
Dimensions
{{ shipment.width }} x {{ shipment.height }} x {{ shipment.length }} cm
Labels are returned by create operations and are not stored on the shipment record.

Status

{% include "partials/status_badge.html" %}
{% if shipment.status == 'new' or shipment.status == 'created' or shipment.status == 'label_ready' %}
{% csrf_token %}
{% endif %}
{% if shipment.provider == 'delivery-sim' %}

Delivery simulator

Loading simulator...
{% endif %}
{% endblock %}