From: Philippe Pepiot Date: Thu, 4 May 2017 09:45:04 +0000 (+0200) Subject: models: Series plural name is Series X-Git-Tag: v2.0.0-rc1~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed7328fdb13d0f286eb873d58e4fec606d20cdee;p=thirdparty%2Fpatchwork.git models: Series plural name is Series By default django use verbose_name + s which lead 'Seriess' displayed in admin interface. Signed-off-by: Philippe Pepiot Reviewed-by: Stephen Finucane --- diff --git a/patchwork/models.py b/patchwork/models.py index a336219a..495bbcd5 100644 --- a/patchwork/models.py +++ b/patchwork/models.py @@ -663,6 +663,7 @@ class Series(models.Model): class Meta: ordering = ('date',) + verbose_name_plural = 'Series' @python_2_unicode_compatible