Your cart
{{ order.items.count }}
{% for order_item in order.items.all %}
{{ order_item.item.title }}
quantity : {{ order_item.quantity }}
${{ order_item.get_final_price }}
{% endfor %}
Promo code
{{order.coupon.code}}
-${{ order.coupon.amount }}
Total (USD)
${{ order.get_total }}
{% if DISPLAY_COUPON_FORM %}
{% csrf_token %}
{{ couponform.code }}
Redeem
{% endif %}