I'm gathering input data via a Django like validated form and then upon validating loading new form from and then validating and then I wish to send to the data store. I'd like to perform temporary storage on the first form, in case the user does not enter the full details on form two I don't see much point of adding to the datastore. So how should I persist the data between forms? Each form has its own handler and post section.
What is the best way to do this?