How to access data when form.is_valid() is false
Question or problem about Python programming: When I have a valid Django form, I can access the data with form.cleaned_data. But how do I get at the data a user entered when the form is not valid i.e., form.is_valid is false.
Continue Reading