I have 6 pages, each with their own form, and a model associated with that form. What I would like to be able to do is store all the information on all 6 forms so that the user can go between any of the 6 pages and still have their previous work saved. The idea is that the user should be able to fill out the forms on the pages in any order and return to their work at any time.
What is the best way to maintain all of this information? Should I create a super model that has all of the other models and only pass this model around to the other pages? thank you!