I have a Django form that allows a user to change their password. I find it confusing on form error for the fields to have the *'ed out data still in them.
I've tried several methods for removing form.data, but I keep getting a This QueryDict instance is immutable
exception message.
Is there a proper way to clear individual form fields or the entire form data set from clean()
?