aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/models.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-02-17 17:20:01 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-02-17 17:20:01 +0000
commiteb18b86ba248a88b1383f463ab594bda16ce7961 (patch)
treecea1297ae7f8824591490851e9416e8cebc56d3e /ctrack/organisations/models.py
parente6f21ed32e35ba201402c860ba33429afb4e8716 (diff)
pluralised to people
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/models.py3
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)