Checkout cancelled
{{ message }}
{% if order %}
Order
Order ID: {{ order.public_id }}
Status: {{ order.status }}
{% set cart_items = order.metadata.cart_items if order.metadata and order.metadata.cart_items else [] %} {% if cart_items %}Cart items
-
{% for item in cart_items %}
-
{{ item.product_name }}
Quantity: {{ item.quantity }}
Price option: {{ item.price_label }}
Line total: {{ item.currency }} {{ "%.2f"|format((item.amount_cents * item.quantity) / 100) }}
{% endfor %}
Product: {{ order.product_slug }}
Price option: {{ order.price_code }}
{% endif %} {% else %}No order ID was supplied in the redirect URL.
{% endif %}