We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b97a7b commit 4d6c66dCopy full SHA for 4d6c66d
docs/ref/models/instances.txt
@@ -44,6 +44,13 @@ message dict with errors from all fields.
44
45
To add your own validation logic, override the supplied ``validate()`` method:
46
47
+Note that ``full_validate`` will NOT be called automatically when you call
48
+your model's ``save()`` method. You will need to call it manually if you wish
49
+to run your model validators. This is for the purposes of backwards
50
+compatibility. However, if you are using a ``ModelForm``, it will call
51
+``full_validate`` for you, and present any errors along with the other form
52
+error messages.
53
+
54
.. method:: Model.validate()
55
56
The ``validate()`` method on ``Model`` by default checks for uniqueness of
0 commit comments