Tagged Questions
1
vote
2answers
694 views
Skip steps on a django FormWizard
I have an application where there is a FormWizard with 5 steps, one of them should only appear when some conditions are satisfied.
The form is for a payment wizard on a on-line cart, one of the steps ...
0
votes
0answers
77 views
How to reset current step in django formwizard
I'm making an app for registration using FormWizard including 3 steps. The app works fine if the user just go step-by-step. But I have two big problems:
User can't go back from a step to the ...
0
votes
1answer
538 views
How to create Django FormWizard for one Model?
I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible ...