jazzband / django-formtools

A set of high-level abstractions for Django forms
https://django-formtools.readthedocs.io
BSD 3-Clause "New" or "Revised" License
814 stars 136 forks source link

Is there a way to redirect to a step and resume in the middle of a form? #82

Open colegleason opened 8 years ago

colegleason commented 8 years ago

As part of my Wizard I have a registration step, but I want to allow users to login if they just forgot to sign in before starting the wizard. How can I set the ?next= param on the login link such that it will return to the form and pick up at the step we left off at (essentially the step after register/login)?

koopg commented 8 years ago

+1

rixx commented 6 years ago

Adding a login/registration form to the wizard and skipping it via conditional steps for logged-in users is probably the best way to handle this (for future reference, in case others strand in this issue).