Your cart
{% if cart_items %}| Product | Price option | Quantity | Unit price | Line total | Action |
|---|---|---|---|---|---|
|
{% if item.main_image_url %}
{{ item.product_name }}
View product |
{{ item.price_label }} | {{ item.currency }} {{ "%.2f"|format(item.amount_cents / 100) }} | {{ item.currency }} {{ "%.2f"|format(item.line_total_cents / 100) }} |
Total: {{ cart_currency }} {{ "%.2f"|format(cart_total_cents / 100) }}
Your cart is empty.
{% endif %}