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 ...
3
votes
4answers
4k views

Problems raising a ValidationError on a Django Form

I'm trying to validate that a submitted URL doesn't already exist in the database. The relevant parts of the Form class look like this: from django.contrib.sites.models import Site class ...
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 ...
0
votes
2answers
747 views

Python - Django - Form choicefield and cleaned_data

I'm having an issue with how cleaned_data seems to work. I want to store the cleaned_data in a session so I can repopulate the form object later. The problem is my choice fields seems to store the ...
0
votes
2answers
207 views

cleaned_data() doesn't have some of the entered data

I have a simple form for a user to enter in Name (CharField), Age(IntegerField), and Sex(ChoiceField). However the data that is taken from the Sex choice field is not showing up in my cleaned_data(). ...