mirror of https://github.com/django/django.git
Fixed #10272: documented the signatures for the contrib.auth views. Thanks, Idan Gazit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10770 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
66ff7db385
commit
de642e4d3d
|
@ -697,7 +697,7 @@ the following line to your URLconf::
|
||||||
|
|
||||||
(r'^accounts/login/$', 'django.contrib.auth.views.login'),
|
(r'^accounts/login/$', 'django.contrib.auth.views.login'),
|
||||||
|
|
||||||
.. function:: views.login()
|
.. function:: views.login(request, [template_name, redirect_field_name])
|
||||||
|
|
||||||
Here's what ``django.contrib.auth.views.login`` does:
|
Here's what ``django.contrib.auth.views.login`` does:
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ the following line to your URLconf::
|
||||||
redisplays the login form.
|
redisplays the login form.
|
||||||
|
|
||||||
It's your responsibility to provide the login form in a template called
|
It's your responsibility to provide the login form in a template called
|
||||||
``registration/login.html`` by default. This template gets passed three
|
``registration/login.html`` by default. This template gets passed four
|
||||||
template context variables:
|
template context variables:
|
||||||
|
|
||||||
* ``form``: A :class:`~django.forms.Form` object representing the login
|
* ``form``: A :class:`~django.forms.Form` object representing the login
|
||||||
|
@ -722,13 +722,17 @@ the following line to your URLconf::
|
||||||
* ``next``: The URL to redirect to after successful login. This may
|
* ``next``: The URL to redirect to after successful login. This may
|
||||||
contain a query string, too.
|
contain a query string, too.
|
||||||
|
|
||||||
* ``site_name``: The name of the current
|
* ``site``: The current :class:`~django.contrib.sites.models.Site`,
|
||||||
:class:`~django.contrib.sites.models.Site`, according to the
|
according to the :setting:`SITE_ID` setting. If you don't have the
|
||||||
:setting:`SITE_ID` setting. If you're using the Django development
|
site framework installed, this will be set to an instance of
|
||||||
version and you don't have the site framework installed, this will be
|
:class:`~django.contrib.sites.models.RequestSite`, which derives the
|
||||||
set to the value of :attr:`request.META['SERVER_NAME']
|
site name and domain from the current
|
||||||
<django.http.HttpRequest.META>`. For more on sites, see
|
:class:`~django.http.HttpRequest`.
|
||||||
:ref:`ref-contrib-sites`.
|
|
||||||
|
* ``site_name``: An alias for ``site.name``. If you don't have the site
|
||||||
|
framework installed, this will be set to the value of
|
||||||
|
:attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
|
||||||
|
For more on sites, see :ref:`ref-contrib-sites`.
|
||||||
|
|
||||||
If you'd prefer not to call the template :file:`registration/login.html`,
|
If you'd prefer not to call the template :file:`registration/login.html`,
|
||||||
you can pass the ``template_name`` parameter via the extra arguments to
|
you can pass the ``template_name`` parameter via the extra arguments to
|
||||||
|
@ -737,6 +741,10 @@ the following line to your URLconf::
|
||||||
|
|
||||||
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'myapp/login.html'}),
|
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'myapp/login.html'}),
|
||||||
|
|
||||||
|
You can also specify the name of the ``GET`` field which contains the URL
|
||||||
|
to redirect to after login by passing ``redirect_field_name`` to the view.
|
||||||
|
By default, the field is called ``next``.
|
||||||
|
|
||||||
Here's a sample :file:`registration/login.html` template you can use as a
|
Here's a sample :file:`registration/login.html` template you can use as a
|
||||||
starting point. It assumes you have a :file:`base.html` template that
|
starting point. It assumes you have a :file:`base.html` template that
|
||||||
defines a ``content`` block:
|
defines a ``content`` block:
|
||||||
|
@ -818,7 +826,7 @@ includes a few other useful built-in views located in
|
||||||
displaying the password change form. This will default to
|
displaying the password change form. This will default to
|
||||||
:file:`registration/password_change_form.html` if not supplied.
|
:file:`registration/password_change_form.html` if not supplied.
|
||||||
|
|
||||||
* ``post_change_redirect``: The URL to redirect to after successful
|
* ``post_change_redirect``: The URL to redirect to after a successful
|
||||||
password change.
|
password change.
|
||||||
|
|
||||||
**Template context:**
|
**Template context:**
|
||||||
|
@ -835,7 +843,7 @@ includes a few other useful built-in views located in
|
||||||
default to :file:`registration/password_change_done.html` if not
|
default to :file:`registration/password_change_done.html` if not
|
||||||
supplied.
|
supplied.
|
||||||
|
|
||||||
.. function:: views.password_reset
|
.. function:: views.password_reset(request[, is_admin_site, template_name, email_template_name, password_reset_form, token_generator, post_reset_redirect])
|
||||||
|
|
||||||
Allows a user to reset their password, and sends them the new password
|
Allows a user to reset their password, and sends them the new password
|
||||||
in an e-mail.
|
in an e-mail.
|
||||||
|
@ -850,11 +858,21 @@ includes a few other useful built-in views located in
|
||||||
generating the e-mail with the new password. This will default to
|
generating the e-mail with the new password. This will default to
|
||||||
:file:`registration/password_reset_email.html` if not supplied.
|
:file:`registration/password_reset_email.html` if not supplied.
|
||||||
|
|
||||||
|
* ``password_reset_form``: Form that will be used to set the password.
|
||||||
|
Defaults to ``SetPasswordForm``.
|
||||||
|
|
||||||
|
* ``token_generator``: Instance of the class to check the password. This
|
||||||
|
will default to ``default_token_generator``, it's an instance of
|
||||||
|
``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
|
||||||
|
|
||||||
|
* ``post_reset_redirect``: The URL to redirect to after a successful
|
||||||
|
password change.
|
||||||
|
|
||||||
**Template context:**
|
**Template context:**
|
||||||
|
|
||||||
* ``form``: The form for resetting the user's password.
|
* ``form``: The form for resetting the user's password.
|
||||||
|
|
||||||
.. function:: views.password_reset_done
|
.. function:: views.password_reset_done(request[, template_name])
|
||||||
|
|
||||||
The page shown after a user has reset their password.
|
The page shown after a user has reset their password.
|
||||||
|
|
||||||
|
@ -864,7 +882,7 @@ includes a few other useful built-in views located in
|
||||||
default to :file:`registration/password_reset_done.html` if not
|
default to :file:`registration/password_reset_done.html` if not
|
||||||
supplied.
|
supplied.
|
||||||
|
|
||||||
.. function:: views.redirect_to_login
|
.. function:: views.redirect_to_login(next[, login_url, redirect_field_name])
|
||||||
|
|
||||||
Redirects to the login page, and then back to another URL after a
|
Redirects to the login page, and then back to another URL after a
|
||||||
successful login.
|
successful login.
|
||||||
|
@ -878,7 +896,11 @@ includes a few other useful built-in views located in
|
||||||
* ``login_url``: The URL of the login page to redirect to. This will
|
* ``login_url``: The URL of the login page to redirect to. This will
|
||||||
default to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
|
default to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
|
||||||
|
|
||||||
.. function:: password_reset_confirm(request[,uidb36, token, template_name, token_generator, set_password_form, post_reset_redirect])
|
* ``redirect_field_name``: The name of a ``GET`` field containing the
|
||||||
|
URL to redirect to after log out. Overrides ``next`` if the given
|
||||||
|
``GET`` parameter is passed.
|
||||||
|
|
||||||
|
.. function:: password_reset_confirm(request[, uidb36, token, template_name, token_generator, set_password_form, post_reset_redirect])
|
||||||
|
|
||||||
Presents a form for entering a new password.
|
Presents a form for entering a new password.
|
||||||
|
|
||||||
|
@ -892,14 +914,15 @@ includes a few other useful built-in views located in
|
||||||
* ``token_generator``: Instance of the class to check the password. This
|
* ``token_generator``: Instance of the class to check the password. This
|
||||||
will default to ``default_token_generator``, it's an instance of
|
will default to ``default_token_generator``, it's an instance of
|
||||||
``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
|
``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
|
||||||
* ``set_password_form``: Form that will use to set the password. This will
|
* ``set_password_form``: Form that will be used to set the password.
|
||||||
default to ``SetPasswordForm``.
|
This will default to ``SetPasswordForm``.
|
||||||
* ``post_reset_redirect``: URL to redirect after the password reset
|
* ``post_reset_redirect``: URL to redirect after the password reset
|
||||||
done. This will default to ``None``.
|
done. This will default to ``None``.
|
||||||
|
|
||||||
.. function:: password_reset_complete(request[,template_name])
|
.. function:: password_reset_complete(request[,template_name])
|
||||||
|
|
||||||
Presents a view that informs that the password has been changed very well.
|
Presents a view which informs the user that the password has been
|
||||||
|
successfully changed.
|
||||||
|
|
||||||
**Optional arguments:**
|
**Optional arguments:**
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue