models.py
class ShoppingList(models.Model): date_created = models.DateTimeField(auto_now_add=True, null=True) # and so on.. class Item(m