Take a look at Model Meta in the django documentation.
Within the model, you can add class Meta , which allows you to use additional parameters for your model that handle things such as unique and plural names.
This can be used as follows (we don't have sheep in English), so verbose_name_plural can be used to override djangos attempts with multiple words:
class Sheep(model.Model): class Meta: verbose_name_plural = 'Sheep'
source share