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()
You can also print (or log) error at back end too, Similarly use this:
Like, to print error:
print(form.errors)
From your template, add the following:
{{ form.errors }} {{ form.non_field_errors }}
Do you see any errors from the above?