Skip to main content

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

dj-dynamic-forms
================

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
-------

1. Change into the ``example/`` directory
2. 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
-----------------

1. Change into the ``tests/`` directory
2. Run ``./runtests.sh``

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

File details

Details for the file dj-dynamic-forms-0.4.dev20140206215248.tar.gz.

File metadata

File hashes

Hashes for dj-dynamic-forms-0.4.dev20140206215248.tar.gz
Algorithm Hash digest
SHA256 31204018c181056b3c8db03fd1729cb8010323159e48588709290f3629fd7c91
MD5 d1c7a3ea38777cbe927456098b810e51
BLAKE2b-256 bbcca6c162795efc30fc1ebfe39089a97d720489cb63f409b18a40e3ff456748

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