Add new icons for the apps: Document comments, documents, file metadata, parsing and OCR. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
20 lines
704 B
Python
20 lines
704 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from mayan.apps.appearance.classes import Icon
|
|
|
|
icon_document_content = Icon(driver_name='fontawesome', symbol='font')
|
|
icon_document_multiple_submit = Icon(driver_name='fontawesome', symbol='font')
|
|
icon_document_ocr_download = Icon(
|
|
driver_name='fontawesome', symbol='font'
|
|
)
|
|
icon_document_ocr_errors_list = Icon(
|
|
driver_name='fontawesome', symbol='font'
|
|
)
|
|
icon_document_type_ocr_settings = Icon(
|
|
driver_name='fontawesome', symbol='font'
|
|
)
|
|
icon_document_type_submit = Icon(driver_name='fontawesome', symbol='font')
|
|
icon_entry_list = Icon(driver_name='fontawesome', symbol='font')
|
|
|
|
icon_document_submit = icon_document_multiple_submit
|