I have a form that for some reason it it doesn\'t throw any errors (if user adds data in the text field) but form.is_valid() doesn\'t validate. Any ideas?
form.is_valid()
From your template, add the following:
{{ form.errors }} {{ form.non_field_errors }}
Do you see any errors from the above?