{% extends 'base.html' %} {% block content %}

Shipping Information


Order Summary

Subtotal {{ currency }} {{ "{:,.0f}".format(total) }}
Shipping FREE
{% if coupon %}
Discount ({{ coupon.code }}) - {{ currency }} {{ "{:,.0f}".format(coupon.discount) }}
{% endif %}
Total {{ currency }} {{ "{:,.0f}".format(final_total) }}
{% if not coupon %}
{% endif %}
Only Cash on Delivery is available for now.
{% endblock %}