I'm working on a little django app for reserving prints of paintings.
Customers go to this ordering page, fill out some information (name, email, dedication, etc), pick the print number they want to reserve, and click order. On clicking, I have my django code storing all the customer information in a new OrderInfo object, and it calls a HttpResponseRedirect to my thankyou page.
I'd like this thankyou page to contain some confirmation details contained in the OrderInfo (e.g. Thank you, {{name}}, for your order).
My first idea was to include the ID of the OrderInfo in the thankyou url but this will let anyone access the OrderInfo for any ID which doesn't sit well for privacy.
You can check out the demo here: link
Thanks in advance!