From e58b18e566e144aa834b6f97d9dce93e24974eae Mon Sep 17 00:00:00 2001 From: Fabien Quatravaux <fabien.quatravaux@riseup.net> Date: Mon, 8 Jun 2020 16:01:50 +0200 Subject: [PATCH] bugfix: use the right form for plural addresses --- djangoldp_profile/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/djangoldp_profile/models.py b/djangoldp_profile/models.py index a029995..7da6ed1 100644 --- a/djangoldp_profile/models.py +++ b/djangoldp_profile/models.py @@ -12,6 +12,7 @@ class Address(Model): city = models.CharField(max_length=255, blank=True) class Meta(Model.Meta): + verbose_name_plural = "addresses" anonymous_perms = ['view'] authenticated_perms = ['inherit'] owner_perms = ['inherit', 'change'] -- GitLab