{% extends "portal_base.html" %} {% block title %}{{ order.number }} · Portal{% endblock %} {% block topbar_title %}{{ order.number }}{% endblock %} {% block portal_content %}

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

{% if order.customer_name %}

{{ order.customer_name }}

{% endif %} {% for item in order.items.all %} {% endfor %}
ItemSKUQtyPrice
{{ item.name }} {{ item.sku }} {{ item.quantity }} {{ item.unit_price }}
{% if "shipping" in enabled_features and order.shipments.all %}

Shipments

{% for shipment in order.shipments.all %} {% endfor %}
CarrierTrackingStatus
{{ shipment.carrier }} {{ shipment.service }} {% if shipment.tracking_url %} {{ shipment.tracking_number }} {% else %} {{ shipment.tracking_number|default:"—" }} {% endif %} {{ shipment.get_tracking_status_display|default:shipment.get_status_display }}
{% endif %}

← All orders

{% endblock %}