Fixed #655 -- Improved 'validator_list' section of docs/model-api.txt.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-20 13:22:20 +00:00
parent d8b8367494
commit 169f9d2bd3
1 changed files with 8 additions and 1 deletions

View File

@ -171,7 +171,14 @@ The following arguments are available to all field types. All are optional.
Like ``unique_for_date`` and ``unique_for_month``.
``validator_list``
A list of extra validators to apply to the field.
A list of extra validators to apply to the field. Each should be a callable
that takes the parameters ``field_data, all_data`` and raises
``django.core.validators.ValidationError`` for errors. (See the
`validator docs`_.)
Django comes with quite a few validators. They're in ``django.core.validators``.
.. _validator docs: http://www.djangoproject.com/documentation/forms/#validators
Field types
-----------