summaryrefslogtreecommitdiff
path: root/docs/ref/validators.txt
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
commit728effcfbdc29d7962b56d794f8911f57a9a63df (patch)
tree5b31294216a5866b4364bedf9702d8e463a3330d /docs/ref/validators.txt
parenta352154e42d7bcb63994c7deefc976a989dcb0cd (diff)
Fixed #14141: docs now use the :doc: construct for links between documents.
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/validators.txt')
-rw-r--r--docs/ref/validators.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/ref/validators.txt b/docs/ref/validators.txt
index 916c388f08..4937512e46 100644
--- a/docs/ref/validators.txt
+++ b/docs/ref/validators.txt
@@ -1,5 +1,3 @@
-.. _ref-validators:
-
==========
Validators
==========
@@ -42,12 +40,12 @@ use the same validator with forms::
How validators are run
======================
-See the :ref:`form validation <ref-forms-validation>` for more information on
+See the :doc:`form validation </ref/forms/validation>` for more information on
how validators are run in forms, and :ref:`Validating objects
<validating-objects>` for how they're run in models. Note that validators will
not be run automatically when you save a model, but if you are using a
``ModelForm``, it will run your validators on any fields that are included in
-your form. See the :ref:`ModelForm documentation <topics-forms-modelforms>`
+your form. See the :doc:`ModelForm documentation </topics/forms/modelforms>`
for information on how model validation interacts with forms.
Built-in validators