{% extends "base.html" %} {% block title %} Payment Gateway {% endblock %} {% block main %}

Order Summary


{% for product in products %} {% endfor %}
{{ product.name }} {{ product.price }} x {{product.quantity}} = {{product.total}}

Subtotal ${{subtotal}}
Shipping ${{delivery_charge}}
Tax (18%) ${{tax}}

Total

${{total}}

Choose Payment Method







{% endblock %}