web/views/management.py
changeset 3377 dd9d292b6a6d
parent 3230 1d25e928c299
child 3451 6b46d73823f5
--- a/web/views/management.py	Wed Sep 23 08:42:52 2009 +0200
+++ b/web/views/management.py	Wed Sep 23 09:29:39 2009 +0200
@@ -67,7 +67,7 @@
 
 class SecurityManagementView(EntityView, SecurityViewMixIn):
     """display security information for a given entity"""
-    id = 'security'
+    __regid__ = 'security'
     __select__ = EntityView.__select__ & authenticated_user()
 
     title = _('security')
@@ -191,7 +191,7 @@
 class ErrorView(AnyRsetView):
     """default view when no result has been found"""
     __select__ = yes()
-    id = 'error'
+    __regid__ = 'error'
 
     def page_title(self):
         """returns a title according to the result set - used for the
@@ -274,7 +274,7 @@
 
 
 class ProcessInformationView(StartupView):
-    id = 'info'
+    __regid__ = 'info'
     __select__ = none_rset() & match_user_groups('users', 'managers')
 
     title = _('server information')