I have a Django project with the following two models setup:
class List(models.Model): team = models.ForeignKey(Team, on_delete=models.CASCADE) name = mod