{% extends 'User/Cust_master.html' %} {% block title %}Your Shopping Cart{% endblock %} {% load static %} {% block body %}

Your shopping cart

{% for item in cart %} {% with product=item.product %} {% endwith %} {% endfor %}
Image Product Quantity Remove Unit Price Price
{{ product.prod_name }}
{% csrf_token %} {{ item.update_quantity_form.quantity }} {{ item.update_quantity_form.update }}
Remove ₱{{ item.price }} ₱{{ item.total_price }}
Total ₱{{ cart.get_total_price }}

Continue shopping Checkout

{% endblock %}