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 }}
```
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
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
dynamicformset-0.2.tar.gz
(6.2 kB
view details)
File details
Details for the file dynamicformset-0.2.tar.gz
.
File metadata
- Download URL: dynamicformset-0.2.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47fa8d52f055fb6b3a102e42f4fbe052d4aec7b76bfd02eb114e05c34e4e93b8 |
|
MD5 | 6d39ab3f8e41a6f69b80148d2b820f28 |
|
BLAKE2b-256 | da0f07ae9249edf39a469cee6c92f2ba6d839e5ed27c2c60eb8efba338c0ea9c |