Edit order
Order ID: {{ order.public_id }}
Cart order items:
-
{% for item in cart_items %}
- {{ item.product_name }} x {{ item.quantity }} ? {{ item.price_label }} ? {{ item.currency }} {{ "%.2f"|format(item.amount_cents / 100) }} {% endfor %}
Amount: {{ order.amount.currency }} {{ order.amount.major() }}
{% else %}Product: {{ order.product_slug }} · Price: {{ order.price_code }} · Amount: {{ order.amount.currency }} {{ order.amount.major() }}
{% endif %}Payment reference: {{ order.payment_reference or "not set" }}
Linked customer: {% if linked_customer %} {{ linked_customer.full_name or "No name" }} ? {{ linked_customer.email }} · {{ linked_customer.public_id }} {% else %} No linked customer record found. {% endif %}
Entitlements: {% if order_entitlements %} {{ order_entitlements|length }} access record{% if order_entitlements|length != 1 %}s{% endif %} {% else %} None yet. {% endif %}
{{ page_error }}
{% endif %} {% if order_entitlements %}Order entitlements
| Access ID | Customer | Product | Price | Type | Status |
|---|---|---|---|---|---|
| {{ entitlement.public_id }} | {{ entitlement.customer_public_id }} | {{ entitlement.product_slug or "?" }} | {{ entitlement.price_code or "?" }} | {{ entitlement.entitlement_type.value }} | {{ entitlement.status.value }} |