2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 12:36:45 +00:00

Fix plural name for Companies in Admin interface

(cherry picked from commit 6e31a8111b296b15219b39aaf3f0ad349c0de37b)
This commit is contained in:
eeintech 2021-10-04 15:57:07 -04:00 committed by Oliver
parent 094a63f751
commit 3d067b39b1

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'),