{% extends 'base.html' %} {% block title %}Checkout{% endblock %} Confirm Checkout

Order Summary


Here is a summary of your order.

{% for item in cart %} {% endfor %}
ID Item Quantity Unit Price (In $) Total (In $)
{{ item["productID"] }} {{ item["name"] }} {{ item["quantity"] }} {{ item["price"] }} {{ item["total"] }}

Total: $ {{ total }}


Shipping Details


{{ user["name"] }}


Ship to:
{{ user["hno"] }}
{{ user["location"] }}
{{ user["state"]}}, {{ user["country"] }}


{{ user["phone"] }}

{{ user["email"] }}




{% endblock %}