Tagged Questions
7
votes
4answers
6k views
Django Forms - How to access data when form.is_valid() is false
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.
I'm trying to ...
1
vote
1answer
36 views
Django: Save cleaned_data in a session effectively
In one of my forms, I am processing the form data and save it in a session variable.
So when I run
if locationForm.is_valid():
I execute
request.session['streetNumber'] = ...
0
votes
2answers
146 views
Key error in Django on form with prefix
I am using two forms on one page (I have my reasons). They are not model forms. I am trying to validate them by using prefix. I found it here: Proper way to handle multiple forms on one page in Django
...