Formsets inside forms
Project description
Django’s form wizard allows you to have only one form or one formset (since 1.4) per step. Using django-formfield you can have more forms per step. Using this app you can have more formsets per step.
Or maybe you will find other use cases for it :)
Installation
Install django-formsetfield with pip:
$ pip install django-formsetfield
Add formsetfield to INSTALLED_APPS.
Usage example
from django import forms from formsetfield.fields import FormSetField class AdultForm(forms.Form): fullname = forms.CharField() passport = forms.CharField() class ChildForm(forms.Form): fullname = forms.CharField() birth_certificate = forms.CharField() class PassengersForm(forms.Form): adults = FormSetField(formset_factory(AdultForm)) children = FormSetField(formset_factory(ChildForm))
Contributing
Feel free to fork, send pull requests or report bugs and issues on github.
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
File details
Details for the file django-formsetfield-0.1.1.tar.gz
.
File metadata
- Download URL: django-formsetfield-0.1.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4115f32a466212e633c72d8c2b9f3b6f317c0b5d713e5b9ab235266d2f4773e2 |
|
MD5 | 5e7457816b537901e23582d23d372dd3 |
|
BLAKE2b-256 | 3b5dc83e324cee23d6716791bf63044466751b64ce619e9a7741cab97222fca3 |