summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-03-03 20:37:41 +0000
committerBrian Rosner <brosner@gmail.com>2008-03-03 20:37:41 +0000
commitba2d0feb72c5df4f72b92a3ccf39436f6fbdaee3 (patch)
tree291126f0689ac65722c7169ae2dbcb57c8b3d36d /docs
parent61b9c8fe005d6d2a5a907b4402ce09b4b8153dad (diff)
newforms-admin: Fixed #6083 -- Updated django.contrib.auth to use newforms. A big thanks to Greg Turner, Michael Newman and Petr Marhoun.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7191 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt32
1 files changed, 16 insertions, 16 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 5134e90267..4d45fd9836 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -666,29 +666,29 @@ successful login.
* ``login_url``: The URL of the login page to redirect to. This
will default to ``settings.LOGIN_URL`` if not supplied.
-Built-in manipulators
----------------------
+Built-in forms
+--------------
+
+**New in Django development version.**
If you don't want to use the built-in views, but want the convenience
-of not having to write manipulators for this functionality, the
-authentication system provides several built-in manipulators:
+of not having to write forms for this functionality, the authentication
+system provides several built-in forms:
- * ``django.contrib.auth.forms.AdminPasswordChangeForm``: A
- manipulator used in the admin interface to change a user's
- password.
+ * ``django.contrib.auth.forms.AdminPasswordChangeForm``: A form used in
+ the admin interface to change a user's password.
- * ``django.contrib.auth.forms.AuthenticationForm``: A manipulator
- for logging a user in.
+ * ``django.contrib.auth.forms.AuthenticationForm``: A form for logging a
+ user in.
- * ``django.contrib.auth.forms.PasswordChangeForm``: A manipulator
- for allowing a user to change their password.
+ * ``django.contrib.auth.forms.PasswordChangeForm``: A form for allowing a
+ user to change their password.
- * ``django.contrib.auth.forms.PasswordResetForm``: A manipulator
- for resetting a user's password and emailing the new password to
- them.
+ * ``django.contrib.auth.forms.PasswordResetForm``: A form for resetting a
+ user's password and emailing the new password to them.
- * ``django.contrib.auth.forms.UserCreationForm``: A manipulator
- for creating a new user.
+ * ``django.contrib.auth.forms.UserCreationForm``: A form for creating a
+ new user.
Limiting access to logged-in users that pass a test
---------------------------------------------------