#django inline formset preserve values after invalid form submission
2 messages · Page 1 of 1 (latest)
You probably want to check how you're ibstantiating the form in python.
The usual flow to preserve data is instantiate the form with the post data, check its valid and then send that same instance back to the view if its invalid. That way it's got the data and errors associated with it.