Move expert_mode to separate module

- Move one level up in menu
This commit is contained in:
Sunil Mohan Adapa 2014-06-01 14:28:49 +05:30
parent eb403b129b
commit 1aaa930a1f
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
installed/system/expert_mode.py
installed/expert_mode/expert_mode.py

View File

@ -24,10 +24,10 @@ class Experts(PagePlugin):
def __init__(self, *args, **kwargs):
PagePlugin.__init__(self, *args, **kwargs)
self.register_page('sys.config.expert')
self.register_page('sys.expert')
cfg.html_root.sys.config.menu.add_item(_('Expert mode'), 'icon-cog',
'/sys/config/expert', 10)
cfg.html_root.sys.menu.add_item(_('Expert Mode'), 'icon-cog',
'/sys/expert', 10)
@cherrypy.expose
@require()