Fix plural name for Companies in Admin interface

This commit is contained in:
eeintech 2021-10-04 15:57:07 -04:00
parent dfdbb4f7d1
commit 6e31a8111b

View File

@ -94,6 +94,7 @@ class Company(models.Model):
constraints = [
UniqueConstraint(fields=['name', 'email'], name='unique_name_email_pair')
]
verbose_name_plural = "Companies"
name = models.CharField(max_length=100, blank=False,
help_text=_('Company name'),