26 lines
842 B
Python
26 lines
842 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from smart_settings import Namespace
|
|
|
|
namespace = Namespace(name='signatures', label=_('Document signatures'))
|
|
setting_storage_backend = namespace.add_setting(
|
|
default='django.core.files.storage.FileSystemStorage',
|
|
global_name='SIGNATURES_STORAGE_BACKEND', help_text=_(
|
|
'Path to the Storage subclass to use when storing detached '
|
|
'signatures.'
|
|
)
|
|
)
|
|
setting_storage_backend_arguments = namespace.add_setting(
|
|
global_name='SIGNATURES_STORAGE_BACKEND_ARGUMENTS',
|
|
default='{{location: {}}}'.format(
|
|
os.path.join(settings.MEDIA_ROOT, 'document_signatures')
|
|
), quoted=True, help_text=_(
|
|
'Arguments to pass to the SIGNATURE_STORAGE_BACKEND. '
|
|
)
|
|
)
|