Home

Published

- 1 min read

django model verbose name

img of django model verbose name

The solution for this is noted below

django model verbose name

Solution

   class WaitlistEntry(Timestamps, models.Model):
    first_name = models.CharField(max_length=100)
    last_name = models.CharField(max_length=100)

    class Meta:
        verbose_name_plural = "Waitlist entries"

Try other methods by searching on the site. That is if this doesn’t work