I have created multiple sub-forms from one model to use the FormWizard in Django.
Confusing is the saving part. Once the user finished the form, I wanted to save the inf
Try something like this:
instance = MyModel() for form in form_list: for field, value in form.cleaned_data.iteritems(): setattr(instance, field, value) instance.save()