# HG changeset patch # User Steve Losh # Date 1234629996 18000 # Node ID a8bf2eea85f7da739ec91d99fe87bc6688995e33 # Parent 95340a47d0818644983e8b2eca02536ea2cf5d60 Fixed the plural for blog entries too. diff -r 95340a47d081 -r a8bf2eea85f7 blog/models.py --- a/blog/models.py Sat Feb 14 11:45:32 2009 -0500 +++ b/blog/models.py Sat Feb 14 11:46:36 2009 -0500 @@ -10,6 +10,10 @@ body = models.TextField() published = models.BooleanField(default=False) + class Meta: + verbose_name = 'entry' + verbose_name_plural = 'entries' + @models.permalink def get_absolute_url(self): return ('blog-entry', (self.pub_date.year, self.pub_date.month,