Commit ce369dce authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

[1.0.X] Fixed #10273: added an explanation of `SetPasswordForm` and...

[1.0.X] Fixed #10273: added an explanation of `SetPasswordForm` and `UserChangeForm` to the docs. Thanks, Tarken. Backport of [10772] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10773 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent cefeb13f
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -951,6 +951,16 @@ provides several built-in forms located in :mod:`django.contrib.auth.forms`:
    A form for resetting a user's password and e-mailing the new password to
    them.

.. class:: SetPasswordForm

    A form that lets a user change his/her password without entering the old
    password.

.. class:: UserChangeForm

    A form used in the admin interface to change a user's information and
    permissions.

.. class:: UserCreationForm

    A form for creating a new user.