Add no-result content to display when there are no files in the staging folder. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
14 lines
624 B
Python
14 lines
624 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from mayan.apps.appearance.classes import Icon
|
|
|
|
icon_document_create_multiple = Icon(
|
|
driver_name='fontawesome', symbol='upload'
|
|
)
|
|
icon_log = Icon(driver_name='fontawesome', symbol='exclamation-triangle')
|
|
icon_setup_sources = Icon(driver_name='fontawesome', symbol='upload')
|
|
icon_source_create = Icon(driver_name='fontawesome', symbol='plus')
|
|
icon_staging_folder = Icon(driver_name='fontawesome', symbol='folder')
|
|
icon_upload_view_link = Icon(driver_name='fontawesome', symbol='upload')
|
|
icon_wizard_submit = Icon(driver_name='fontawesome', symbol='arrow-right')
|