cheluis / django-dynamic-forms

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

Home Page:https://django-dynamic-forms.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Dynamic Form

https://pypip.in/version/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.

Warning

django-dynamic-forms 0.5.x will only support Django >= 1.7! If you need support for Django < 1.7 use django-dynamic-forms 0.4.x!

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')),
    ...
)

Important

Make sure that you get the namespace straight: 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

About

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

https://django-dynamic-forms.readthedocs.org

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 99.3%Language:HTML 0.5%Language:Shell 0.2%