How to find subtotal price of all products in shopping cart in django

Cart Model has product,user,quantity and def total_price(self): return self.quantity * self.product.price

My Cart html page has cart.product.name, cart.product.price, cart.quantity, cart.total_price

How to find the subtotal of all products in cart

Back to Top