diff --git a/AUTHORS b/AUTHORS index b389bb9a95..d46a054cf9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -453,6 +453,7 @@ answer newbie questions, and generally made Django that much better: Armin Ronacher Daniel Roseman Rozza + Audrey Roy Oliver Rutherfurd ryankanno Gonzalo Saavedra diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index f6cdfc8141..97883d7880 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -1,3 +1,5 @@ +.. _form-and-field-validation: + Form and field validation ========================= diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index 7e00f6a41c..eb53b177c5 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -196,10 +196,11 @@ The ``is_valid()`` method and ``errors`` ---------------------------------------- The first time you call ``is_valid()`` or access the ``errors`` attribute of a -``ModelForm`` triggers form validation as well as :ref:`model validation -`. This has the side-effect of cleaning the model you pass -to the ``ModelForm`` constructor. For instance, calling ``is_valid()`` on your -form will convert any date fields on your model to actual date objects. +``ModelForm`` triggers :ref:`form validation ` as +well as :ref:`model validation `. This has the side-effect +of cleaning the model you pass to the ``ModelForm`` constructor. For instance, +calling ``is_valid()`` on your form will convert any date fields on your model +to actual date objects. The ``save()`` method