django-dynamic-forms is a reusable Django application to create and configure forms through the admin.
Project description
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
Change into the example/ directory
Apply all migrations: python manage.py migrate
Create a superuser (if not asked before): python manage.py createsuperuser
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
Make sure to install tox: $ pip install tox
Run tox
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-dynamic-forms-0.5.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb372b007e9e1bb026dc6d0bc20742ce0a39235fe1657e1631a04d35d45616eb |
|
MD5 | 6b37376e1fc3ead79cb6bf4b705e6c01 |
|
BLAKE2b-256 | 6e7b02638e5e17fd25e7653fbc32bfd4173658b2d5f3293b08ac9647024fd259 |
Hashes for django_dynamic_forms-0.5.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff0519a6c6ca7a28307588420cceb8f7f919792cc64c3ee21209cf92e806e7f1 |
|
MD5 | f5d0129ff99fc45e4ebdf26305153538 |
|
BLAKE2b-256 | e0e3fa8db496643ca8e507372f8f134794e56aad8156ad11a50c30944d1e6f4e |