13 lines
267 B
Python
13 lines
267 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from icons.literals import *
|
|
|
|
PATH = 'custom'
|
|
ID = 'custom'
|
|
LABEL = _(u'Custom')
|
|
|
|
DICTIONARY = {
|
|
FILE_EXTENSION_ERROR: 'file_extension_error.png',
|
|
FILE_EXTENSION_UNKNOWN: 'file_extension_unknown.png'
|
|
}
|