[CHANGE] FA classes in menu hooks updated

This commit is contained in:
Peter Pfeufer 2023-12-12 02:40:18 +01:00
parent 6f670da1db
commit 49ff355d50
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27
9 changed files with 10 additions and 10 deletions

View File

@ -10,7 +10,7 @@ class CorpStats(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
_('Corporation Stats'), _('Corporation Stats'),
'fas fa-share-alt fa-fw', 'fa-solid fa-share-nodes',
'corputils:view', 'corputils:view',
navactive=['corputils:'] navactive=['corputils:']
) )

View File

@ -7,7 +7,7 @@ from allianceauth.services.hooks import UrlHook
@hooks.register('menu_item_hook') @hooks.register('menu_item_hook')
def register_menu(): def register_menu():
return MenuItemHook(_('Fleet Activity Tracking'), 'fas fa-users fa-fw', 'fatlink:view', return MenuItemHook(_('Fleet Activity Tracking'), 'fa-solid fa-users', 'fatlink:view',
navactive=['fatlink:']) navactive=['fatlink:'])

View File

@ -13,7 +13,7 @@ class ApplicationsMenu(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
_('Applications'), _('Applications'),
'far fa-file fa-fw', 'fa-regular fa-file',
'hrapplications:index', 'hrapplications:index',
navactive=['hrapplications:']) navactive=['hrapplications:'])

View File

@ -10,7 +10,7 @@ class OpTimerboardMenu(MenuItemHook):
def __init__(self): def __init__(self):
MenuItemHook.__init__( MenuItemHook.__init__(
self, _('Fleet Operations'), self, _('Fleet Operations'),
'fas fa-exclamation fa-fw', 'fa-solid fa-exclamation',
'optimer:view', 'optimer:view',
navactive=['optimer:'] navactive=['optimer:']
) )

View File

@ -10,7 +10,7 @@ class PermissionsTool(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
'Permissions Audit', 'Permissions Audit',
'fas fa-id-card fa-fw', 'fa-solid fa-id-card',
'permissions_tool:overview', 'permissions_tool:overview',
order=400, order=400,
navactive=['permissions_tool:'] navactive=['permissions_tool:']

View File

@ -10,7 +10,7 @@ class Services(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
_('Services'), _('Services'),
'fas fa-cogs fa-fw', 'fa-solid fa-gears',
'services:services', 100 'services:services', 100
) )

View File

@ -78,7 +78,7 @@ class JabberBroadcast(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
_('Jabber Broadcast'), _('Jabber Broadcast'),
'fas fa-bullhorn fa-fw', 'fa-solid fa-bullhorn',
'openfire:broadcast' 'openfire:broadcast'
) )
@ -93,7 +93,7 @@ class FleetBroadcastFormatter(MenuItemHook):
MenuItemHook.__init__( MenuItemHook.__init__(
self, self,
_('Fleet Broadcast Formatter'), _('Fleet Broadcast Formatter'),
'fas fa-space-shuttle fa-fw', 'fa-solid fa-space-shuttle',
'services:fleet_format_tool' 'services:fleet_format_tool'
) )

View File

@ -12,7 +12,7 @@ class SrpMenu(MenuItemHook):
def __init__(self): def __init__(self):
MenuItemHook.__init__( MenuItemHook.__init__(
self, _('Ship Replacement'), self, _('Ship Replacement'),
'far fa-money-bill-alt fa-fw', 'fa-regular fa-money-bill-1',
'srp:management', 'srp:management',
navactive=['srp:'] navactive=['srp:']
) )

View File

@ -10,7 +10,7 @@ class TimerboardMenu(MenuItemHook):
def __init__(self): def __init__(self):
MenuItemHook.__init__( MenuItemHook.__init__(
self, 'Structure Timers', self, 'Structure Timers',
'far fa-clock fa-fw', 'fa-regular fa-clock',
'timerboard:view', 'timerboard:view',
navactive=['timerboard:'] navactive=['timerboard:']
) )