from django.db import models class Club(models.Model): name = models.CharField(max_length=200) def __str__(self): return self.name