{% extends "accounts/account_base.html" %} {% block title %}Order {{ order.number }} · {{ SITE_NAME }}{% endblock %} {% block account_content %}

Order {{ order.number }}

{{ order.get_status_display }} · ${{ order.amount }} {{ order.currency|upper }}

{% if order.customer_name %}

{{ order.customer_name }}

{% endif %} {% if order.shipping_address.line1 %}

{{ order.shipping_address.line1 }}{% if order.shipping_address.line2 %}, {{ order.shipping_address.line2 }}{% endif %}
{{ order.shipping_address.city }} {{ order.shipping_address.state }} {{ order.shipping_address.zip }}

{% endif %} {% if "shipping" in enabled_features %}

Shipments

{% for shipment in order.shipments.all %}

{{ shipment.carrier }} {{ shipment.service }} · {{ shipment.get_status_display }} {% if shipment.tracking_status %} · {{ shipment.get_tracking_status_display }}{% endif %}

{% if shipment.tracking_number %}

Tracking {{ shipment.tracking_number }} {% if shipment.tracking_url %} · Track package {% endif %}

{% endif %} {% if shipment.tracking_events %} {% endif %}
{% empty %}

Not shipped yet. Tracking appears here once a label is bought or a tracking number is added.

{% endfor %} {% endif %}

← All orders

{% endblock %}