├── .coveragerc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── .tx └── config ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── addon.json ├── aldryn_config.py ├── aldryn_forms ├── __init__.py ├── action_backends.py ├── action_backends_base.py ├── admin │ ├── __init__.py │ ├── base.py │ ├── exporter.py │ ├── forms.py │ └── views.py ├── cms_apps.py ├── cms_plugins.py ├── compat.py ├── contrib │ ├── __init__.py │ └── email_notifications │ │ ├── __init__.py │ │ ├── cms_plugins.py │ │ ├── helpers.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_form_plugin_add_missing_permission.py │ │ ├── 0003_auto_20180206_1733.py │ │ ├── 0004_auto_20190104_1242.py │ │ ├── 0005_add_field_reply_to_email.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── notification.py │ │ └── static │ │ └── email_notifications │ │ └── admin │ │ └── email-notifications.css ├── forms.py ├── helpers.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── nl │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20151014_1631.py │ ├── 0003_auto_20151207_1038.py │ ├── 0004_auto_20151207_1825.py │ ├── 0005_auto_20160821_1026.py │ ├── 0006_auto_20160821_1039.py │ ├── 0007_auto_20170315_1421.py │ ├── 0008_auto_20170316_0845.py │ ├── 0009_auto_20171218_1049.py │ ├── 0010_auto_20171220_1733.py │ ├── 0011_auto_20180110_1300.py │ ├── 0012_auto_20190104_1242.py │ ├── 0013_add_field_is_enable_autofill_from_url_params.py │ └── __init__.py ├── models.py ├── signals.py ├── sizefield │ ├── LICENSE │ ├── README.rst │ ├── __init__.py │ ├── models.py │ ├── utils.py │ └── widgets.py ├── templates │ ├── admin │ │ └── aldryn_forms │ │ │ ├── display │ │ │ ├── recipients.html │ │ │ └── submission_data.html │ │ │ ├── export.html │ │ │ ├── export_wizard.html │ │ │ └── formsubmission │ │ │ └── change_list.html │ └── aldryn_forms │ │ ├── base.html │ │ ├── email_notifications │ │ └── emails │ │ │ ├── notification.body.html │ │ │ ├── notification.body.txt │ │ │ ├── notification.subject.txt │ │ │ └── themes │ │ │ ├── default.html │ │ │ └── default.txt │ │ ├── emails │ │ ├── includes │ │ │ ├── form_data.html │ │ │ └── form_data.txt │ │ ├── notification.body.html │ │ ├── notification.body.txt │ │ ├── notification.subject.txt │ │ └── user │ │ │ ├── notification.body.txt │ │ │ └── notification.subject.txt │ │ ├── field.html │ │ ├── fields │ │ ├── booleanfield.html │ │ ├── emailfield.html │ │ ├── filefield.html │ │ ├── hiddenfield.html │ │ ├── imagefield.html │ │ ├── multiplecheckboxselectfield.html │ │ ├── multipleselectfield.html │ │ ├── numberfield.html │ │ ├── phonefield.html │ │ ├── radioselectfield.html │ │ ├── selectfield.html │ │ ├── textareafield.html │ │ └── textfield.html │ │ ├── fieldset.html │ │ ├── form.html │ │ ├── send.html │ │ └── submit_button.html ├── templatetags │ ├── __init__.py │ └── aldryn_forms_tags.py ├── urls.py ├── utils.py ├── validators.py └── views.py ├── setup.py ├── tests ├── __init__.py ├── requirements.txt ├── settings.py ├── templates │ ├── base.html │ ├── test_fullwidth.html │ └── test_page.html ├── test_cms_plugins.py ├── test_migrations.py ├── test_models.py ├── test_utils.py └── test_views.py ├── tox.ini └── updatetranslations.sh /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/README.rst -------------------------------------------------------------------------------- /addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/addon.json -------------------------------------------------------------------------------- /aldryn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_config.py -------------------------------------------------------------------------------- /aldryn_forms/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '6.2.1' 2 | -------------------------------------------------------------------------------- /aldryn_forms/action_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/action_backends.py -------------------------------------------------------------------------------- /aldryn_forms/action_backends_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/action_backends_base.py -------------------------------------------------------------------------------- /aldryn_forms/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/admin/__init__.py -------------------------------------------------------------------------------- /aldryn_forms/admin/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/admin/base.py -------------------------------------------------------------------------------- /aldryn_forms/admin/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/admin/exporter.py -------------------------------------------------------------------------------- /aldryn_forms/admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/admin/forms.py -------------------------------------------------------------------------------- /aldryn_forms/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/admin/views.py -------------------------------------------------------------------------------- /aldryn_forms/cms_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/cms_apps.py -------------------------------------------------------------------------------- /aldryn_forms/cms_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/cms_plugins.py -------------------------------------------------------------------------------- /aldryn_forms/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/compat.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/cms_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/cms_plugins.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/helpers.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/migrations/0001_initial.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/0002_form_plugin_add_missing_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/migrations/0002_form_plugin_add_missing_permission.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/0003_auto_20180206_1733.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/migrations/0003_auto_20180206_1733.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/0004_auto_20190104_1242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/migrations/0004_auto_20190104_1242.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/0005_add_field_reply_to_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/migrations/0005_add_field_reply_to_email.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/models.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/notification.py -------------------------------------------------------------------------------- /aldryn_forms/contrib/email_notifications/static/email_notifications/admin/email-notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/contrib/email_notifications/static/email_notifications/admin/email-notifications.css -------------------------------------------------------------------------------- /aldryn_forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/forms.py -------------------------------------------------------------------------------- /aldryn_forms/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/helpers.py -------------------------------------------------------------------------------- /aldryn_forms/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /aldryn_forms/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /aldryn_forms/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0001_initial.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0002_auto_20151014_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0002_auto_20151014_1631.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0003_auto_20151207_1038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0003_auto_20151207_1038.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0004_auto_20151207_1825.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0004_auto_20151207_1825.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0005_auto_20160821_1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0005_auto_20160821_1026.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0006_auto_20160821_1039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0006_auto_20160821_1039.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0007_auto_20170315_1421.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0007_auto_20170315_1421.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0008_auto_20170316_0845.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0008_auto_20170316_0845.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0009_auto_20171218_1049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0009_auto_20171218_1049.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0010_auto_20171220_1733.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0010_auto_20171220_1733.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0011_auto_20180110_1300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0011_auto_20180110_1300.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0012_auto_20190104_1242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0012_auto_20190104_1242.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/0013_add_field_is_enable_autofill_from_url_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/migrations/0013_add_field_is_enable_autofill_from_url_params.py -------------------------------------------------------------------------------- /aldryn_forms/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aldryn_forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/models.py -------------------------------------------------------------------------------- /aldryn_forms/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/signals.py -------------------------------------------------------------------------------- /aldryn_forms/sizefield/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/sizefield/LICENSE -------------------------------------------------------------------------------- /aldryn_forms/sizefield/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/sizefield/README.rst -------------------------------------------------------------------------------- /aldryn_forms/sizefield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aldryn_forms/sizefield/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/sizefield/models.py -------------------------------------------------------------------------------- /aldryn_forms/sizefield/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/sizefield/utils.py -------------------------------------------------------------------------------- /aldryn_forms/sizefield/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/sizefield/widgets.py -------------------------------------------------------------------------------- /aldryn_forms/templates/admin/aldryn_forms/display/recipients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/admin/aldryn_forms/display/recipients.html -------------------------------------------------------------------------------- /aldryn_forms/templates/admin/aldryn_forms/display/submission_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/admin/aldryn_forms/display/submission_data.html -------------------------------------------------------------------------------- /aldryn_forms/templates/admin/aldryn_forms/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/admin/aldryn_forms/export.html -------------------------------------------------------------------------------- /aldryn_forms/templates/admin/aldryn_forms/export_wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/admin/aldryn_forms/export_wizard.html -------------------------------------------------------------------------------- /aldryn_forms/templates/admin/aldryn_forms/formsubmission/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/admin/aldryn_forms/formsubmission/change_list.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/base.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.body.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.body.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/email_notifications/emails/notification.subject.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/email_notifications/emails/themes/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/email_notifications/emails/themes/default.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/email_notifications/emails/themes/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/email_notifications/emails/themes/default.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/includes/form_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/includes/form_data.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/includes/form_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/includes/form_data.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/notification.body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/notification.body.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/notification.body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/notification.body.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/notification.subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/notification.subject.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/user/notification.body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/user/notification.body.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/emails/user/notification.subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/emails/user/notification.subject.txt -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/field.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/booleanfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/emailfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/filefield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/hiddenfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/imagefield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/multiplecheckboxselectfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/fields/multiplecheckboxselectfield.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/multipleselectfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/numberfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/phonefield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/radioselectfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/selectfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/textareafield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fields/textfield.html: -------------------------------------------------------------------------------- 1 | {% extends "aldryn_forms/field.html" %} 2 | -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/fieldset.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/form.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/send.html -------------------------------------------------------------------------------- /aldryn_forms/templates/aldryn_forms/submit_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templates/aldryn_forms/submit_button.html -------------------------------------------------------------------------------- /aldryn_forms/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /aldryn_forms/templatetags/aldryn_forms_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/templatetags/aldryn_forms_tags.py -------------------------------------------------------------------------------- /aldryn_forms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/urls.py -------------------------------------------------------------------------------- /aldryn_forms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/utils.py -------------------------------------------------------------------------------- /aldryn_forms/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/validators.py -------------------------------------------------------------------------------- /aldryn_forms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/aldryn_forms/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/templates/base.html -------------------------------------------------------------------------------- /tests/templates/test_fullwidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/templates/test_fullwidth.html -------------------------------------------------------------------------------- /tests/templates/test_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/templates/test_page.html -------------------------------------------------------------------------------- /tests/test_cms_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/test_cms_plugins.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/tox.ini -------------------------------------------------------------------------------- /updatetranslations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/aldryn-forms/HEAD/updatetranslations.sh --------------------------------------------------------------------------------