summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 02:03:35 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 02:03:35 +0000
commitce369dce138dc51e4cb12dc4548ebd2c46cac015 (patch)
tree3cf4b8b68a923131979e584f239a15536ee76ff9 /docs
parentcefeb13f91e1a81a373fc2f941797f4b0b0194f9 (diff)
[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
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index ad27b5ce94..e422baf839 100644
--- a/docs/topics/auth.txt
+++ b/docs/topics/auth.txt
@@ -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.