{% extends 'website/home/base.html' %} {% load static %} {% block title %} Cart List {% endblock %} {% load mathfilters %} {% block content %}
{% include 'website/customer/customer_dashboard_sidebar.html' %}

My Cart List

{% for item in cart_items %} {% empty %} {% endfor %}
Image Product Quantity Price Total Actions
{{ item.product }} {{ item.product }} {{ item.quantity }} {{ item.unit_price }} {{ item.quantity|mul:item.unit_price }}
Your cart is empty.
{% endblock %}