web/views/debug.py
branchtls-sprint
changeset 742 99115e029dca
parent 635 305da8d6aa2d
child 981 d86d1ee3b60e
equal deleted inserted replaced
739:39721e56b56d 742:99115e029dca
    24         w(u'</ul>')
    24         w(u'</ul>')
    25 
    25 
    26     
    26     
    27 class DebugView(StartupView):
    27 class DebugView(StartupView):
    28     id = 'debug'
    28     id = 'debug'
    29     __selectors__ = (none_rset, match_user_groups('managers'),)
    29     __select__ = none_rset() & match_user_groups('managers')
    30     title = _('server debug information')
    30     title = _('server debug information')
    31 
    31 
    32     def call(self, **kwargs):
    32     def call(self, **kwargs):
    33         """display server information"""
    33         """display server information"""
    34         w = self.w
    34         w = self.w