Update the common, django_gpg, document_comments, document_indexing, document_parsing, document_signatures, document_states, event, linking, mailer, permissions, rest_api, smart_settings, sources and task manager apps to use the new Icon class.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-06-28 23:19:49 -04:00
parent 40d8c7049c
commit aa4e8e3507
30 changed files with 397 additions and 174 deletions

View File

@@ -0,0 +1,17 @@
from __future__ import absolute_import, unicode_literals
from appearance.classes import Icon
icon_document_content = Icon(driver_name='fontawesome', symbol='font')
icon_document_parsing_errors_list = Icon(
driver_name='fontawesome', symbol='file-alt'
)
icon_document_content_download = Icon(
driver_name='fontawesome', symbol='file-alt'
)
icon_document_type_submit = Icon(
driver_name='fontawesome', symbol='crosshairs'
)
icon_link_error_list = Icon(
driver_name='fontawesome', symbol='file-alt'
)