Re: Using form wizard to complete form over multiple sessions

2008-04-11 Thread leifbyron
It does. Thanks so much! I'll let you know how it goes. Leif On Apr 11, 5:08 am, "Honza Král" <[EMAIL PROTECTED]> wrote: > if you are using the wizard class, it doesn't remember the state > anywhere, so if you supply the correct POST data, you will get thrown > exactly to the point you wanted

Re: Using form wizard to complete form over multiple sessions

2008-04-11 Thread Honza Král
if you are using the wizard class, it doesn't remember the state anywhere, so if you supply the correct POST data, you will get thrown exactly to the point you wanted to be. The only thing you have to do is save the form data somewhere (perhaps just pickle the POST in a database), retrieve them

Using form wizard to complete form over multiple sessions

2008-03-31 Thread leifbyron
Hi there, I have a 20-step form wizard that many users prefer to complete over multiple sessions. I am considering adding save_for_later() and resume_form_wizard() functions that would save the serialized form data to the database, and allow users to resume the wizard at a later time. Has