Fixed #8786: Moved phone number field docs to localflavor

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-09-02 00:26:28 +00:00
parent 1b615ac46d
commit c7a10b677d
2 changed files with 5 additions and 8 deletions

View File

@ -650,6 +650,11 @@ United States of America (``us``)
A form ``Select`` widget that uses a list of U.S. states/territories as its
choices.
.. class:: us.models.PhoneNumberField
A :class:`CharField` that checks that the value is a valid U.S.A.-style phone
number (in the format ``XXX-XXX-XXXX``).
.. class:: us.models.USStateField
A model field that forms represent as a ``forms.USStateField`` field and

View File

@ -617,14 +617,6 @@ Like a :class:`BooleanField`, but allows ``NULL`` as one of the options. Use
this instead of a :class:`BooleanField` with ``null=True``. The admin represents
this as a ``<select>`` box with "Unknown", "Yes" and "No" choices.
``PhoneNumberField``
--------------------
.. class:: PhoneNumberField([**options])
A :class:`CharField` that checks that the value is a valid U.S.A.-style phone
number (in the format ``XXX-XXX-XXXX``).
``PositiveIntegerField``
------------------------