├── .gitignore ├── .hgignore ├── .hgtags ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── conf.py ├── img │ ├── fields.png │ └── report.png └── index.rst ├── forms_builder ├── __init__.py ├── example_project │ ├── __init__.py │ ├── manage.py │ ├── settings.py │ ├── templates │ │ └── index.html │ └── urls.py └── forms │ ├── __init__.py │ ├── admin.py │ ├── fields.py │ ├── forms.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160418_0120.py │ ├── 0003_auto_20180522_0820.py │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── signals.py │ ├── templates │ ├── admin │ │ └── forms │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ └── entries.html │ ├── email_extras │ │ ├── base.html │ │ ├── base.txt │ │ ├── form_response.html │ │ ├── form_response.txt │ │ ├── form_response_copies.html │ │ └── form_response_copies.txt │ └── forms │ │ ├── form_detail.html │ │ ├── form_sent.html │ │ └── includes │ │ └── built_form.html │ ├── templatetags │ ├── __init__.py │ └── forms_builder_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/.hgtags -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/img/fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/docs/img/fields.png -------------------------------------------------------------------------------- /docs/img/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/docs/img/report.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst -------------------------------------------------------------------------------- /forms_builder/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.14.0" 2 | -------------------------------------------------------------------------------- /forms_builder/example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms_builder/example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/example_project/manage.py -------------------------------------------------------------------------------- /forms_builder/example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/example_project/settings.py -------------------------------------------------------------------------------- /forms_builder/example_project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/example_project/templates/index.html -------------------------------------------------------------------------------- /forms_builder/example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/example_project/urls.py -------------------------------------------------------------------------------- /forms_builder/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms_builder/forms/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/admin.py -------------------------------------------------------------------------------- /forms_builder/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/fields.py -------------------------------------------------------------------------------- /forms_builder/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/forms.py -------------------------------------------------------------------------------- /forms_builder/forms/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /forms_builder/forms/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /forms_builder/forms/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/migrations/0001_initial.py -------------------------------------------------------------------------------- /forms_builder/forms/migrations/0002_auto_20160418_0120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/migrations/0002_auto_20160418_0120.py -------------------------------------------------------------------------------- /forms_builder/forms/migrations/0003_auto_20180522_0820.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/migrations/0003_auto_20180522_0820.py -------------------------------------------------------------------------------- /forms_builder/forms/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms_builder/forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/models.py -------------------------------------------------------------------------------- /forms_builder/forms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/settings.py -------------------------------------------------------------------------------- /forms_builder/forms/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/signals.py -------------------------------------------------------------------------------- /forms_builder/forms/templates/admin/forms/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/admin/forms/change_form.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/admin/forms/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/admin/forms/change_list.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/admin/forms/entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/admin/forms/entries.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/base.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/base.txt -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/form_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/form_response.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/form_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/form_response.txt -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/form_response_copies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/form_response_copies.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/email_extras/form_response_copies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/email_extras/form_response_copies.txt -------------------------------------------------------------------------------- /forms_builder/forms/templates/forms/form_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/forms/form_detail.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/forms/form_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/forms/form_sent.html -------------------------------------------------------------------------------- /forms_builder/forms/templates/forms/includes/built_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templates/forms/includes/built_form.html -------------------------------------------------------------------------------- /forms_builder/forms/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms_builder/forms/templatetags/forms_builder_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/templatetags/forms_builder_tags.py -------------------------------------------------------------------------------- /forms_builder/forms/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/tests.py -------------------------------------------------------------------------------- /forms_builder/forms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/urls.py -------------------------------------------------------------------------------- /forms_builder/forms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/utils.py -------------------------------------------------------------------------------- /forms_builder/forms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/forms_builder/forms/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenmcd/django-forms-builder/HEAD/setup.py --------------------------------------------------------------------------------