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.1.tar.gz
(6.2 kB
view details)
File details
Details for the file dynamicformset-0.1.tar.gz.
File metadata
- Download URL: dynamicformset-0.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d28fc5e8080d2b5880ea8ca582de4a54b90b099f535fd7a80b3fd8ccd5e252a1
|
|
| MD5 |
d254f3120dbb659408e789657f1e980e
|
|
| BLAKE2b-256 |
c47aa2df6ffb6e23bdc52833427ad9764f91318dfc8fd6a214a75d537b9140bd
|