Reverted [4578] because there's no such thing as a PasswordField database field type

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4579 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-02-25 19:51:33 +00:00
parent 81bb3d9e74
commit 25895623ff
1 changed files with 0 additions and 8 deletions

View File

@ -338,14 +338,6 @@ instead of a ``BooleanField`` with ``null=True``.
The admin represents this as a ``<select>`` box with "Unknown", "Yes" and "No" choices.
``PasswordField``
~~~~~~~~~~~~~~~~~
A ``PasswordField`` is like a ``TextField`` but the difference is that the
characters that are entered are masked, typically by asterisks (*). Also note
that even though this is a password field the data is sent as clear text to
the server. Additional measures are needed to ensure data safety.
``PhoneNumberField``
~~~~~~~~~~~~~~~~~~~~