So I have a model like this:
class Season(models.Model):
number = models.IntegerField()
show = models.ForeignKey("Show")
class Show(models.Model):
name = models.CharField(max_length=255, null=True, blank=True)
Inside my SeasonAdmin I can see that the show field has a dropdown box for the list of Shows, but the problem is that when I click on the dropdown box I just see a list of Show object
. How would I make it show the object name instead of just Show object
?