Form.non_field_errors()
This method returns the list of errors from Form.errors
that aren’t associated with a particular field. This includes ValidationError
s that are raised in Form.clean()
and errors added using Form.add_error(None,
"...")
.
Please login to continue.