Dynamic forms for Django - data storage in Postgres Hstore. It is a reusable Django application to create and configure forms through the admin.
Project description
Dynamic forms for Django
dj-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.
It uses Postgres Hstore extension to store forms data.
This project is fork of [django-dynamic-forms](https://github.com/Markush2010/django-dynamic-forms) by [Markush2010](https://github.com/Markush2010) mainly to use Postgres Hstore by default.
## Install ` 1. pip install -r requirements.txt 2. pip install dj_dynamic_forms ` Postgres extension Hstore must be installed manually.
` CREATE EXTENSION Hstore; `
## Usage
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' )
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](https://docs.djangoproject.com/en/stable/topics/email/#django.core.mail.send_mail) in the officiall documentation.
## Example
Change into the example/ directory
Run ./manage.py runserver
The admin is available at http://127.0.0.1:8000/admin/.
Username: admin
Password: password
You can find an example form at http://127.0.0.1:8000/example-form/.
## Running the tests
Change into the tests/ directory
Run ./runtests.sh
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
File details
Details for the file dj-dynamic-forms-0.3.dev20131119204044.tar.gz
.
File metadata
- Download URL: dj-dynamic-forms-0.3.dev20131119204044.tar.gz
- Upload date:
- Size: 42.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d12e9c9cbb3f9b55f37511b764133822147b25a3ada84aa0b288d4a4c3f63ee7 |
|
MD5 | ea1a51f3e27b6fe27b761fb679f003c0 |
|
BLAKE2b-256 | 87af2cc49ea23bd90e0e3dfb8bc0c0f2574befafa1826db677669521da12f369 |