Settings

DYNAMIC_FORMS_EMAIL_RECIPIENTS

dynamic_forms.conf.DYNAMIC_FORMS_EMAIL_RECIPIENTS

A list of email addresses. Used to define the receipients form data will be send to if the action dynamic_form_send_email() is activated.

Defaults to all email addresses defined in the ADMINS setting.

DYNAMIC_FORMS_FORM_TEMPLATES

dynamic_forms.conf.DYNAMIC_FORMS_FORM_TEMPLATES

New in version 0.3.

A tuple of 2-tuples passed to the FormModel‘s form_template attribute. This setting provides easier and less error-prone definition of the form template.

Defaults to:

(
    ('dynamic_forms/form.html', _('Default form template')),
)

DYNAMIC_FORMS_SUCCESS_TEMPLATES

dynamic_forms.conf.DYNAMIC_FORMS_SUCCESS_TEMPLATES

New in version 0.3.

A tuple of 2-tuples passed to the FormModel‘s success_template attribute. This setting provides easier and less error-prone definition of the form template.

(
    ('dynamic_forms/form_success.html', _('Default success template')),
)