aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/gui/app/models.py
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2012-11-26 22:15:17 +0000
committerMichael Elkins <melkins@tislabs.com>2012-11-26 22:15:17 +0000
commit6aaa8992229d3d2114f098e9a5fafcf85043c00c (patch)
tree9704eb7d086e0ca21cddcb5a91d21893c2591086 /rpkid/rpki/gui/app/models.py
parenta304688ecaf6ec681f27e8f82e0c0b1ae1b04d2d (diff)
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
Diffstat (limited to 'rpkid/rpki/gui/app/models.py')
-rw-r--r--rpkid/rpki/gui/app/models.py5
1 files changed, 1 insertions, 4 deletions
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):