Question

I am creating a form that requires user confirmation before submitting the data. I would like a seperate confirmation page because I need to display quite a bit information about how the form data will be processed. I was wondering if there was a pythonic way to pass data between forms in Pyramid.

Submitting the form takes the user to the confirmation page. Thus, the view for the confirmation has the form data stored in request.POST. I was wondering if there was a clean way to pass along all of this data to the final view once the user hits 'submit' on the confirmation page. I would also like to add a boolean variable, confirmed, to the dictionary of parameters.

Was it helpful?

Solution

This is not a Pyramid-specific answer, but two common approaches to this problem are:

  1. Store the data in a session.
  2. Store the data as a hidden form on the confirmation page, and resubmit with "confirmed"

I like 2 much better because it's a stateless method. You can also use the exact same form processing logic, and just check for the presence of your "confirmed" POST variable to decide which action to take and view to show (i.e, either the "please confirm" view, or processing and the "processed" view.)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top