On Jun 10, 10:48 am, NealWalters <nealwalt...@nealwalters.com> wrote: > So I stored the list into my bigtable database. The user goes to page > 2 or 3 of a five page form, then goes back to the first page where the > languages were, and now, I need to show the same languages checked > that he user checked when he was originally on page 1.
So this seems like a good case for the FormWizard, however, the FormWizard as it stands right now, doesn't allow you to go back to previous forms (http://code.djangoproject.com/ticket/9200). I think there are two ways of doing this: 1. use sessions 2. store each step in the database, which you retrieve when you return to that step. Once all the steps are complete, you can delete the steps from the database and create a record. Of course, you'd need a scrubber script that deletes the partially complete processes after 24 hours of inactivity. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---