Django Confirm a form before submitting it
问题 I've got a form which I retrieve data for in form.cleaned_data. I wish to render this data to another page for the submitter to review before it is entered in the DB. Now, I can just use render(request,"xyz.html","datax":form.cleaned_data} to render it to the user, but I am stuck at how to re-submit this data as POST from this page. How should I store this data in the next page so that it can be resent to me with my "confirm" button. Please do not suggest form preview in django. I do not wish