Skip to main content

django-dynamic-forms is a reusable Django application to create and configure forms through the admin.

Project description

https://pypip.in/v/django-dynamic-forms/badge.png https://pypip.in/d/django-dynamic-forms/badge.png https://travis-ci.org/MarkusH/django-dynamic-forms.png https://coveralls.io/repos/MarkusH/django-dynamic-forms/badge.png?branch=develop

django-dynamic-forms lets you create your forms through the Django admin. You can add and remove form fields as you need them. That makes it perfect for creating survey or application forms.

INSTALLATION

Add 'dynamic_forms' to the INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'dynamic_forms',
    ...
)

Add 'dynamic_forms.middlewares.FormModelMiddleware' to the MIDDLEWARE_CLASSES (probably at the end):

MIDDLEWARE_CLASSES = (
    ...
    'dynamic_forms.middlewares.FormModelMiddleware'
)

Add 'dynamic_forms.urls' to the URL patterns:

urlpatterns = patterns('',
    ...
    url(r'^dynamic_forms/',
        include('dynamic_forms.urls', namespace='dynamic_forms')),
    ...
)

You can set DYNAMIC_FORMS_EMAIL_RECIPIENTS in your settings to a list of e-mail addresses. Forms being send via e-mail will then be send to those addresses instead of those defined in settings.ADMINS. Each recipient will see all other recipients. See send_mail in the officiall documentation.

Example

  1. Change into the example/ directory

  2. Apply all migrations: python manage.py migrate

  3. Create a superuser (if not asked before): python manage.py createsuperuser

  4. Run python manage.py runserver

The admin is available at http://127.0.0.1:8000/admin/.

You can find an example form at http://127.0.0.1:8000/example-form/.

Running the tests

  1. Make sure to install tox: $ pip install tox

  2. Run tox

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-dynamic-forms-0.4.0.tar.gz (46.3 kB view details)

Uploaded Source

Built Distribution

django_dynamic_forms-0.4.0-py2.py3-none-any.whl (42.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-dynamic-forms-0.4.0.tar.gz.

File metadata

File hashes

Hashes for django-dynamic-forms-0.4.0.tar.gz
Algorithm Hash digest
SHA256 07f37928e598e71bfb52b311ef4b0ce98044f417228425a32d8b7056b9a5eb8f
MD5 b0e131c873b966f95a7d4c86ce59281d
BLAKE2b-256 f78a02d3dd4ddb4de4e65ff08673659bf54da829467520b788f8ba6efce67f35

See more details on using hashes here.

File details

Details for the file django_dynamic_forms-0.4.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_dynamic_forms-0.4.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4c42035b62e56697e58f4d2db1ee5ee520838200853a6c7778309c945f4627f0
MD5 3416697ca7f6c9e55ec5f551190f9dc7
BLAKE2b-256 17f7f1c2a670bb511b9f7d6ab06527e831463cae7ba1ef3858882e8a4ba81842

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page