What are some RESTful ways to transition between pages of a multi-page form in Django?
My current method:
- form POSTs to same page
- form view validates and stores POST data in session
- form view redirects to the next form page upon successful validation.
- next form checks if previous data exists. if not, redirects to first form.
Are redirects between form pages bad? Should forms POST to the next form page? If so, where should form validation happen?