I'm building a django project, and creating user profile app. But I want user to complete creating profile process in multiple pages. For example: first page fill in the address and phone number, and then user click "continue" to the second page, where user can fill in some other things like gender, date of birth. But I want to store all this information into one table.

What I used to do is store the first page's data into some hidden field, and pass to the next page and submit them at the final page. Is that the correct and secure way? How django handle this condition?

Thank you.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Use Django's FormWizard

link|improve this answer
Great, that's exactly what I'm looking for. Thank you. @Chris Pratt – Xinghan Feb 1 at 4:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.