Bypass django form validation on new form instance
- by Thomas Schultz
Hello!
I have a situation where we are trying to autofill some form data on the second page of a signup and I was wondering if there's a way to bypass the entire form validation when we pass in only a couple of fields?
so we have something like
form = NewForm(request.POST)
Where request.POST only contains some of the fields in NewForm().
So the…