'tuple' object has no attribute 'quantity' django
Advertisements I’m trying to do a cart system where an user can add a product to the cart and if it was already in there I would add one of it but I keep getting the error "’tuple’ object has no attribute ‘quantity’ django". class OrderItem(models.Model): user = models.ForeignKey(User, on_delete=models.CASCADE) item = models.ForeignKey(Product, on_delete=models.CASCADE) quantity… Read More 'tuple' object has no attribute 'quantity' django