Пример #1
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/network',
                       title='Network Monitor',
                       menu={
                           'id': 'system.network',
                           'icon': 'exchange'
                       })
Пример #2
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/cron',
                       title='Cron Jobs',
                       menu={
                           'id': 'system.cron',
                           'icon': 'cogs'
                       })
Пример #3
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/disk',
                       title='Disk Manager',
                       menu={
                           'id': 'system.disk',
                           'icon': 'circle-o'
                       })
Пример #4
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/users',
                       title='Users',
                       menu={
                           'id': 'system.users',
                           'icon': 'users'
                       })
Пример #5
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/processes',
                       title='Processes',
                       menu={
                           'id': 'system.processes',
                           'icon': 'cog'
                       })
Пример #6
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/hosts',
                       title='Hosts',
                       menu={
                           'id': 'system.hosts',
                           'icon': 'cubes'
                       })
Пример #7
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/overview',
                       title='Overview',
                       menu={
                           'id': 'firewall.overview',
                           'icon': 'circle',
                           'parent': {
                               'id': 'firewall',
                               'text': 'Firewall',
                               'icon': 'fire'
                           }
                       })
Пример #8
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/general',
                       title='General Information',
                       menu={
                           'id': 'system.overview',
                           'icon': 'circle',
                           'order': 0,
                           'parent': {
                               'id': 'system',
                               'text': 'System',
                               'icon': 'television'
                           }
                       })
Пример #9
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/general',
                       title='Overview',
                       menu={
                           'id': 'sso.overview',
                           'icon': 'Overview',
                           'order': 0,
                           'parent': {
                               'id': 'sso',
                               'text': 'SAML',
                               'icon': 'bullhorn'
                           }
                       })
Пример #10
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/create',
                       title='New Site',
                       menu={
                           'id': 'jack.create',
                           'icon': 'plus',
                           'order': 0,
                           'parent': {
                               'id': 'jack',
                               'text': 'Jack',
                               'icon': 'plug'
                           }
                       })
Пример #11
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/list', title='User Management',
                             menu={'id': 'dashboard.users', 'icon': 'users', 'order': 1})
Пример #12
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/process', title='View Process')
Пример #13
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/restart', title='Restarting')
Пример #14
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/updates', title='View Update')
Пример #15
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/plugins/install', title='Install Plugins',
                             menu={'id': 'dashboard.plugins.install', 'icon': 'cube', 'order': 1})
Пример #16
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/home', title='Home',
                             menu={'id': 'dashboard.home', 'icon': 'home', 'order': 0,
                                     'parent': {'id': 'dashboard', 'text': 'Dashboard', 'icon': 'dashboard', 'order': 0}})
Пример #17
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/view', title='View Site')
Пример #18
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/edit', title='User Editor')
Пример #19
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/me', title='Me')
Пример #20
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/error', title='Fatal Error')
Пример #21
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/plugins/list', title='Installed Plugins',
                             menu={'id': 'dashboard.plugins.list', 'icon': 'square', 'order': 0,
                                     'parent': {'id': 'dashboard.plugins', 'text': 'Plugins', 'icon': 'cubes', 'order': 2}})
Пример #22
0
    def __init__(self):
        BaseView.__init__(self, endpoint='/terminal', title='Terminal')

        self.terminals = {}
Пример #23
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/home', title='Dashboard',
                             menu={'id': 'dashboard', 'icon': 'home', 'order': 0})