Skip to main content

UNKNOWN

Project description

# Dynamic form set for Django app

Allows to add and delete forms with a click of a button. Can make forms sortable.

## Requirements

Django framework, jQuery and jQuery UI.

## Installation

```
pip install dynamicformset
```

## Usage
Add "dynamicformset" to installed apps in django settings file:

```python
INSTALLED_APPS = (
...
'dynamicformset',
...
)
```

Then it can be used in model:

```python
from django.forms import formset_factory
from dynamicformset import DynamicFormSet

myformset = formset_factory(MyForm, formset=DynamicFormSet, can_order=True, can_delete=True, extra=0)
```

Make sure required css and js files are included in a template:

```
{{ myformset.media.css }}
{{ myformset.media.js }}
```

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

dynamicformset-0.2.tar.gz (6.2 kB view hashes)

Uploaded Source

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