8👍
✅
Yes, there’s an attributes you can add to a models class Meta, verbose_name_plural
–
class YourModel(Model):
# fields
class Meta:
verbose_name_plural = 'Statuses'
See the docs.
Source:stackexchange.com