From: Michael Newman Date: Sat, 24 Oct 2009 20:14:36 +0000 (+0800) Subject: Adding a verbose name plural to make the admin show the proper plural X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=047bd723a23f019e45aaca432bacde06c13aabee;p=django-google-tools.git Adding a verbose name plural to make the admin show the proper plural --- diff --git a/google_analytics/models.py b/google_analytics/models.py index 6f477bf..58e0eed 100644 --- a/google_analytics/models.py +++ b/google_analytics/models.py @@ -8,3 +8,6 @@ class Analytics(models.Model): def __unicode__(self): return u"%s" % (self.analytics_code) + + class Meta: + verbose_name_plural = "Analytics"