Use the new icon classes to add custom icons. Improve the URL schemes of some apps for uniformity. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
12 lines
593 B
Python
12 lines
593 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from mayan.apps.appearance.classes import Icon
|
|
|
|
icon_permission = Icon(driver_name='fontawesome', symbol='thumbs-up')
|
|
icon_role_create = Icon(driver_name='fontawesome', symbol='plus')
|
|
icon_role_delete = Icon(driver_name='fontawesome', symbol='times')
|
|
icon_role_edit = Icon(driver_name='fontawesome', symbol='pencil-alt')
|
|
icon_role_groups = Icon(driver_name='fontawesome', symbol='users')
|
|
icon_role_list = Icon(driver_name='fontawesome', symbol='user-secret')
|
|
icon_role_permissions = Icon(driver_name='fontawesome', symbol='thumbs-up')
|