Commit c7a10b67 authored by James Bennett's avatar James Bennett
Browse files

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
parent 1b615ac4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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
+0 −8
Original line number Diff line number Diff line
@@ -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``
------------------------