[Answered ]-Django half filled forms

2👍

the easiest way to do this is to store the data posted and save it in the user session.

eg.


form_state = request.POST.copy()
request.session['form_state'] = form_state

Something similar is done by form form wizard (https://docs.djangoproject.com/en/dev/ref/contrib/formtools/form-wizard/)

👤Iris

Leave a comment