コード例 #1
0
    def __init__(self):

        MenuItemHook.__init__(self,
                              _('Audit'),
                              'far fa-eye fa-fw',
                              'corptools:view',
                              navactive=['corptools:'])
コード例 #2
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Permissions Audit',
                           'fa fa-key fa-id-card',
                           'permissions_tool:overview',
                           order=400,
                           navactive=['permissions_tool:'])
コード例 #3
0
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(self,
                           _('Mumble Temp Links'),
                           'fas fa-microphone fa-fw',
                           'mumbletemps:index',
                           navactive=['mumbletemps:index'])
コード例 #4
0
 def __init__(self):
     MenuItemHook.__init__(
         self,
         _('Example App'),
         'fa fa-paw fa-fw',
         'example:index',
         navactive=['example:index']
     )
コード例 #5
0
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "far fa-bell fa-fw",
         "discordpingformatter:index",
         navactive=["discordpingformatter:index"],
     )
 def __init__(self):
     MenuItemHook.__init__(
         self,
         "Secure Groups",
         "fas fa-user-lock fa-fw",
         "securegroups:groups",
         45,
         navactive=["securegroups:groups"],
     )
コード例 #7
0
ファイル: auth_hooks.py プロジェクト: ppfeufer/aa-esi-status
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "fas fa-signal fa-fw",
         "esistatus:index",
         navactive=["esistatus:index"],
     )
コード例 #8
0
ファイル: auth_hooks.py プロジェクト: ppfeufer/aa-srp
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "far fa-money-bill-alt fa-fw",
         "aasrp:dashboard",
         navactive=["aasrp:"],
     )
コード例 #9
0
ファイル: auth_hooks.py プロジェクト: Dreadbomb/aa-fleet
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _("Fleet"),
         "fa fa-users fa-fw",
         "fleet:dashboard",
         navactive=["fleet:"],
     )
コード例 #10
0
ファイル: auth_hooks.py プロジェクト: ppfeufer/aa-fleetpings
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "far fa-bell fa-fw",
         "fleetpings:index",
         navactive=["fleetpings:index"],
     )
コード例 #11
0
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "far fa-clock fa-fw",
         "timezones:index",
         navactive=["timezones:index"],
     )
コード例 #12
0
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         AFAT_APP_NAME,
         "fas fa-space-shuttle fa-fw",
         "afat:dashboard",
         navactive=["afat:"],
     )
コード例 #13
0
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _("Mumble Temp Links"),
         "fa fa-microphone fa-fw",
         "mumbletemps:index",
         navactive=["mumbletemps:index"],
     )
コード例 #14
0
ファイル: auth_hooks.py プロジェクト: ppfeufer/aa-sov-timer
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         _(__title__),
         "far fa-clock fa-fw",
         "sovtimer:dashboard",
         navactive=["sovtimer:"],
     )
コード例 #15
0
    def __init__(self):
        """
        Setup menu entry for sidebar
        """

        MenuItemHook.__init__(
            self,
            _(__title__),
            "fas fa-clipboard-list fa-fw",
            "aa_bulletin_board:dashboard",
            navactive=["aa_bulletin_board:"],
        )
 def __init__(self):
     # setup menu entry for sidebar
     MenuItemHook.__init__(
         self,
         text=_("Secure Group Audit"),
         classes="fas fa-user-check fa-fw",
         url_name="securegroups:audit_list",
         order=55,
         navactive=[
             "securegroups:audit_list",
         ],
     )
コード例 #17
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Alliance Contacts',
                           'fa fa-address-card fa-fw',
                           'alliancetools:contacts',
                           navactive=['alliancetools:contacts'])
コード例 #18
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Structures',
                           'fa fa-building fa-fw',
                           'alliancetools:structures',
                           navactive=['alliancetools:structures'])
コード例 #19
0
ファイル: auth_hooks.py プロジェクト: Kaezon/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self, 'Fleet Operations',
                           'fa fa-exclamation  fa-fw',
                           'optimer:view',
                           navactive=['optimer:'])
コード例 #20
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Job Board',
                           'fa fa-tasks fa-fw',
                           'alliancetools:jobs_board',
                           navactive=['alliancetools:jobs_board'])
コード例 #21
0
ファイル: auth_hooks.py プロジェクト: Kaezon/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self, 'Ship Replacement',
                           'fa fa-money fa-fw',
                           'srp:management',
                           navactive=['srp:'])
コード例 #22
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Structure Timers',
                           'fa fa-clock-o fa-fw',
                           'timerboard:view',
                           navactive=['timerboard:'])
コード例 #23
0
ファイル: auth_hooks.py プロジェクト: Kaezon/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self, 'Fleet-Up',
                           'fa fa-arrow-up fa-fw',
                           'fleetup:view',
                           navactive=['fleetup:'])
コード例 #24
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Structure Txfrs',
                           'fa fa-exchange fa-fw',
                           'alliancetools:str_txfr',
                           navactive=['alliancetools:str_txfr'])
コード例 #25
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Alliance Toolbox',
                           'fa fa-empire fa-fw',
                           'alliancetools:dashboard',
                           navactive=['alliancetools:dashboard'])
コード例 #26
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Internal Timers',
                           'fa fa-clock-o fa-fw',
                           'alliancetools:timers',
                           navactive=['alliancetools:timers'])
コード例 #27
0
 def __init__(self):
     MenuItemHook.__init__(self, 'Blacklist',
                           'fas fa-ban fa-fw',
                           'blacklist:blacklist',
                           navactive=['blacklist:blacklist'])
コード例 #28
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Moon Extractions',
                           'fa fa-moon-o fa-fw',
                           'alliancetools:moons',
                           navactive=['alliancetools:moons'])
コード例 #29
0
 def __init__(self):
     MenuItemHook.__init__(self, 'Pilot Log',
                           'fas fa-address-book fa-fw',
                           'toolbox:eve_note_board',
                           navactive=['toolbox:eve_note_board'])
コード例 #30
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Customs Offices',
                           'fa fa-globe fa-fw',
                           'alliancetools:pocos',
                           navactive=['alliancetools:pocos'])
コード例 #31
0
ファイル: auth_hooks.py プロジェクト: Kaezon/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self,
                           'Corporation Stats',
                           'fa fa-share-alt fa-fw',
                           'corputils:view',
                           navactive=['corputils:'])
コード例 #32
0
 def __init__(self):
     MenuItemHook.__init__(self,
                           _('Corporation Stats'),
                           'fa fa-share-alt fa-fw',
                           'corputils:view',
                           navactive=['corputils:'])
コード例 #33
0
ファイル: auth_hooks.py プロジェクト: tnisarghu/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self,
                           _('Applications'),
                           'fa fa-file-o fa-fw',
                           'hrapplications:index',
                           navactive=['hrapplications:'])
コード例 #34
0
 def __init__(self):
     MenuItemHook.__init__(self, 'Pilot Log',
                           'fas fa-address-book fa-fw',
                           'blacklist:note_board',
                           navactive=['blacklist:note_board'])
コード例 #35
0
ファイル: auth_hooks.py プロジェクト: Kaezon/allianceauth
 def __init__(self):
     MenuItemHook.__init__(self, 'Structure Timers',
                           'fa fa-clock-o fa-fw',
                           'timerboard:view',
                           navactive=['timerboard:'])