{% extends 'user/components/base.html' %} {% block title %}Checkout{% endblock %} {% block body %} {% load static %}
{% csrf_token %}

Billing Details

Additional Information

Cart Total

{% for id, item in cart.items %} {% endfor %}
Products Subtotal
{{ item.name }}

{{ item.name }}

x {{ item.quantity }}

MMK {{ item.subtotal }}
Total MMK {{ total }}

Payment

{% for payment in payments %}
{% endfor %}

Payment Screenshot

{% endblock %}