Add new icons for the apps: Document comments, documents, file metadata, parsing and OCR. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
14 lines
362 B
Python
14 lines
362 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from mayan.apps.appearance.classes import Icon
|
|
|
|
icon_document_submit = Icon(
|
|
driver_name='fontawesome', symbol='chess-board'
|
|
)
|
|
icon_document_multiple_submit = Icon(
|
|
driver_name='fontawesome', symbol='chess-board'
|
|
)
|
|
icon_file_metadata = Icon(
|
|
driver_name='fontawesome', symbol='chess-board'
|
|
)
|