1👍
✅
From reading your requirements it seems django’s form wizard will be better idea as it would easier to
- Pass data between the forms/steps which probably you will need
- Going back and forth in the steps is again easier, not much handcrafted code to manage states.
If you are not much comfortable with wizard, having multiple views will be preferable. In that case, you may need to use request.session
to pass data between the views.
Source:stackexchange.com