MCPcopy
hub / github.com/django/django / is_valid

Method is_valid

django/forms/forms.py:204–206  ·  view source on GitHub ↗

Return True if the form has no errors, or False otherwise.

(self)

Source from the content-addressed store, hash-verified

202 return self._errors
203
204 def is_valid(self):
205 """Return True if the form has no errors, or False otherwise."""
206 return self.is_bound and not self.errors
207
208 def add_prefix(self, field_name):
209 """

Callers 3

postMethod · 0.45
postMethod · 0.45
validate_uniqueMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected