django-multiform
django-multiform copied to clipboard
Wrap multiple forms into one form-like object
Report this: File "/home/mjd/.virtualenvs/mjd/lib/python3.4/site-packages/multiform/**init**.py", line 1, in from .forms import MultiForm, MultiModelForm File "/home/mjd/.virtualenvs/mjd/lib/python3.4/site-packages/multiform/forms.py", line 11, in from django.forms.util import ErrorList ImportError: No module named 'django.forms.util' Change to .utils
Little fix to use multiforms with Django 1.9
Well, it seems to work fine with form wizard. I wrote a test about it. If you want me to test more about it or something just tell me, here...
When using `MultiForm` as the form in one of the entries of the `form_list` attribute of the Django's `WizardView`, I'm getting the following error: ``` 'NoneType' object has no attribute...
In BaseForm, non_field_errors is supposed to return an ErrorList. The form renderer I'm using (https://github.com/dyve/django-bootstrap3) was complaining about not receiving the correct type so I had to correct it. I...
Right now, the code in the documentation looks smth like this: ``` class FooBarForm(MultiForm): base_forms = { 'foo': FooForm, 'bar': BarForm } # views.py from django.views import generic from .forms...
File "/Users/dmitriychebruchan/programming/ships-list-site/venv/lib/python3.11/site-packages/multiform/forms.py", line 11, in from django.forms.util import ErrorList ModuleNotFoundError: No module named 'django.forms.util' Fixing the error.