summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 02:02:58 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-14 02:02:58 +0000
commitbc514fe87e42d78c665569ed24a8ca6dd487a1d6 (patch)
tree7a78467bdcbb29c7bd7287de94d77d1a171ffcb3
parentde642e4d3d543f79df4503079cd7cedd1e12dd7e (diff)
downloaddjango-bc514fe87e42d78c665569ed24a8ca6dd487a1d6.tar.gz
Fixed #10273: added an explanation of `SetPasswordForm` and `UserChangeForm` to the docs. Thanks, Tarken.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10772 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 7f3f2dac4d..88379459ea 100644
--- a/docs/topics/auth.txt
+++ b/docs/topics/auth.txt
@@ -955,6 +955,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.