I have 2 models:
class Artist(models.Model): name = models.CharField(max_length=255) music_type = models.CharField(max_length=50) class Event(models.