Tagged Questions

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 ...
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(). ...