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