I would use only one form and only display a few field on each step of
the wizard
2016-10-07 5:39 GMT+02:00 Nelson Diaz :
> # forms.py
> class ContactForm1(forms.Form):
> subject = forms.CharField(max_length=100)
>
> class ContactForm2(forms.Form):
> sender = forms.CharField(required=False
# forms.pyclass ContactForm1(forms.Form):
subject = forms.CharField(max_length=100)
class ContactForm2(forms.Form):
sender = forms.CharField(required=False)
class ContactForm3(forms.Form):
message = forms.CharField(widget=forms.Textarea,required=False)
# views.pyclass ContactWizard(Se
2 matches
Mail list logo