# HG changeset patch # User Steve Losh # Date 1234629932 18000 # Node ID 95340a47d0818644983e8b2eca02536ea2cf5d60 # Parent 1f2356294a8e10adb60eae1e0b8d9c87bd6e5787 Figured out the verbose_name_plural stuff. diff -r 1f2356294a8e -r 95340a47d081 photoblog/models.py --- a/photoblog/models.py Sat Feb 14 11:39:34 2009 -0500 +++ b/photoblog/models.py Sat Feb 14 11:45:32 2009 -0500 @@ -14,6 +14,10 @@ def snippet(self): return self.body[:50] + ('...' if len(self.body) > 50 else '') + class Meta: + verbose_name = 'entry' + verbose_name_plural = 'entries' + class IKOptions: spec_module = 'photoblog.specs' cache_dir = 'storage/photoblog/cache'