{% extends 'user/components/base.html' %} {% block title %}Cart{% endblock %} {% block body %} {% load static %} {% csrf_token %} Image Name Price Quantity Subtotal Remove {% for cart_id, item in cart.items %} {{ item.name }} MMK {{ item.price }} MMK {{ item.subtotal }} {% empty %} Your cart is empty. {% endfor %} Update Cart Continue Shopping Cart Totals Total MMK {{ total }} Proceed To Checkout {% endblock %}