Skip to main content

Dynamically add forms to your site through the admin interface.

Project description

Dynamically add forms to your site through the admin interface.

With django-dynamicforms you can:

  • add forms through the admin interface

  • add (custom) form fields through the admin interface

  • reuse form fields in different forms

  • customize predefined forms through the admin interface

  • send personalized e-mails to submitters of dynamicforms

  • download data posted to forms as CSV

Install

  • pip install django-dynamicforms

  • add 'dynamicforms' to your INSTALLED_APPS

  • add (r'^dynamicforms/', include('dynamicforms.urls')) to your urls.py

Dependencies

django >= 1.3, html2text

Settings

There are two optional settings: DYNAMICFORM_TYPES and DYNAMICFIELD_TYPES, which define custom form and field types respectively. For example:

DYNAMICFORM_TYPES = {
    'newsletter-subscription': {
        'VERBOSE_NAME':   'Newsletter subscription',
        'BASE_FORM':      'newsletters.forms.SubscriptionForm',
        'SUCCESS_URL':    '/newsletter/thanks/',
        'TEMPLATE':       'dynamicforms/form.html',
        'TAG_TEMPLATE':   'dynamicforms/_form.html',
        'EMAIL_TEMPLATE': 'dynamicforms/notification.html',
    },
}

DYNAMICFIELD_TYPES = {
    'phone': {
        'VERBOSE_NAME': 'Phone number',
        'FIELD':        'phone.forms.PhoneField',
        'HAS_CHOICES':  False,
        'DEFAULT':      '',
        'WIDGET':       'django.forms.TextInput'
    },
}

Response e-mails are sent from settings.DEFAULT_FROM_EMAIL. Notification e-mails are sent from settings.SERVER_EMAIL.

Usage

Template tag

Every form has its own page, but can also be included in other pages with:

{% load dynamicform_tags %}
...
{% show_dynamicform %}

It will always post to its own url, though, and validation errors will have to be corrected there.

Templates

The templates used to render dynamicforms can be overridden by custom form types, but default to: - dynamicforms/form.html for the form url - dynamicforms/_form.html for the template tag - dynamicforms/notification.eml for the notification e-mail

Wishlist

  • adapt labels/help_text/… of (predefined) base form fields

  • nicer report of data

  • optional integration with messages framework

  • dynamicformwizard

  • better/more tests

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-dynamicforms-0.1.2.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file django-dynamicforms-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-dynamicforms-0.1.2.tar.gz
Algorithm Hash digest
SHA256 92d57590dec242dbe873940234588c983f0fcfb4d8b1389046629a1a89862990
MD5 d4c54566b4a07c06e8abd585ae6b215b
BLAKE2b-256 972b7f9dec2147352e7e8e1d059b29433a84876e68abbea8191abdc132dff05a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page