diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-02-17 17:20:01 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-02-17 17:20:01 +0000 |
commit | eb18b86ba248a88b1383f463ab594bda16ce7961 (patch) | |
tree | cea1297ae7f8824591490851e9416e8cebc56d3e /ctrack | |
parent | e6f21ed32e35ba201402c860ba33429afb4e8716 (diff) |
pluralised to people
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ctrack/organisations/models.py b/ctrack/organisations/models.py index e61bcb6..0738405 100644 --- a/ctrack/organisations/models.py +++ b/ctrack/organisations/models.py @@ -34,6 +34,9 @@ class Person(models.Model): def get_organisation_name(self): return self.organisation.name + class Meta: + verbose_name_plural = "People" + class Mode(models.Model): descriptor = models.CharField(max_length=100) |