From 6aaa8992229d3d2114f098e9a5fafcf85043c00c Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Mon, 26 Nov 2012 22:15:17 +0000 Subject: remove *_list templates since they are no longer used remove object_detail.html templates, and make all the *_detail.html templates dervice from app_base.html directly. there was no functionality left worth having in the intermediate template remove verbose_name from some models where it wasn't needed add form_title variable to some forms where it was missing svn path=/branches/tk329/; revision=4905 --- rpkid/rpki/gui/app/models.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'rpkid/rpki/gui/app/models.py') diff --git a/rpkid/rpki/gui/app/models.py b/rpkid/rpki/gui/app/models.py index 2975aa0a..fdb18b73 100644 --- a/rpkid/rpki/gui/app/models.py +++ b/rpkid/rpki/gui/app/models.py @@ -46,7 +46,6 @@ class Parent(rpki.irdb.models.Parent): class Meta: proxy = True - verbose_name = 'Parent' class Child(rpki.irdb.models.Child): @@ -61,8 +60,7 @@ class Child(rpki.irdb.models.Child): class Meta: proxy = True - verbose_name = 'Child' - verbose_name_plural = 'Children' + verbose_name_plural = 'children' class ChildASN(rpki.irdb.models.ChildASN): @@ -228,7 +226,6 @@ class GhostbusterRequest(rpki.irdb.models.GhostbusterRequest): class Meta: ordering = ('family_name', 'given_name') - verbose_name = 'Ghostbuster' class Timestamp(models.Model): -- cgit v1.2.3