Skip to main content

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

Project description

https://img.shields.io/pypi/v/django-dynamic-forms.svg https://img.shields.io/pypi/l/django-dynamic-forms.svg https://img.shields.io/pypi/dm/django-dynamic-forms.svg https://img.shields.io/travis/MarkusH/django-dynamic-forms/develop.svg https://img.shields.io/codecov/c/github/MarkusH/django-dynamic-forms/develop.svg

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.apps.DynamicFormsConfig' to the INSTALLED_APPS:

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

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.5.0.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

django_dynamic_forms-0.5.0-py2.py3-none-any.whl (24.8 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for django-dynamic-forms-0.5.0.tar.gz
Algorithm Hash digest
SHA256 fb2939bee9890890f8f0da141f6fc417490f494118856f0afcffde45c8436ebc
MD5 a1a562e08d0d9d955df1e0d79b0605d7
BLAKE2b-256 f7987ea55d4c621e89373752e46c28d92c98829a8ffa454f885211e57651bc0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_dynamic_forms-0.5.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ea60c949e1224976f00f1bb5f9cfcde367662388299b2d067a6908c89045868e
MD5 03b6e6d47e016aeb3b7757432c13e254
BLAKE2b-256 b5b633db9faf56228582d4869dfeb3b9d6a256ed43a5d519b26c7b908e312fca

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