1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- """
- Default settings for the ``mezzanine.forms`` app. Each of these can be
- overridden in your project's settings module, just like regular
- Django settings. The ``editable`` argument for each controls whether
- the setting is editable via Django's admin.
- Thought should be given to how a setting is actually used before
- making it editable, as it may be inappropriate - for example settings
- that are only read during startup shouldn't be editable, since changing
- them would require an application reload.
- """
- from __future__ import unicode_literals
- from django.utils.translation import ugettext_lazy as _
- from mezzanine.conf import register_setting
- register_setting(
- name="FORMS_FIELD_MAX_LENGTH",
- description=_("Max length allowed for field values in the forms app."),
- editable=False,
- default=2000,
- )
- register_setting(
- name="FORMS_LABEL_MAX_LENGTH",
- description=_("Max length allowed for field labels in the forms app."),
- editable=False,
- default=200,
- )
- register_setting(
- name="FORMS_CSV_DELIMITER",
- description=_("Char to use as a field delimiter when exporting form "
- "responses as CSV."),
- editable=False,
- default=",",
- )
- register_setting(
- name="FORMS_UPLOAD_ROOT",
- description=_("Absolute path for storing file uploads for the forms app."),
- editable=False,
- default="",
- )
- register_setting(
- name="FORMS_EXTRA_FIELDS",
- description=_("Extra field types for the forms app. Should contain a "
- "sequence of three-item sequences, each containing the ID, dotted "
- "import path for the field class, and field name, for each custom "
- "field type. The ID is simply a numeric constant for the field, "
- "but cannot be a value already used, so choose a high number such "
- "as 100 or greater to avoid conflicts."),
- editable=False,
- default=(),
- )
- register_setting(
- name="FORMS_EXTRA_WIDGETS",
- description=_("Extra field widgets for the forms app. Should contain a "
- "sequence of two-item sequences, each containing an existing ID "
- "for a form field, and a dotted import path for the widget class."),
- editable=False,
- default=(),
- )
|