Fixed #14584 -- Documented settings.PASSWORD_RESET_TIMEOUT_DAYS. Also fixed some cross-refs in the neighborhood. Thanks to hop for the report and Adam Mckerlie for the draft patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14437 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gabriel Hurley 2010-11-02 11:53:01 +00:00
parent 3e62e253d2
commit bb062c376f
1 changed files with 12 additions and 2 deletions

View File

@ -1210,10 +1210,20 @@ Default: ``0``
Number of digits grouped together on the integer part of a number. Common use
is to display a thousand separator. If this setting is ``0``, then, no grouping
will be applied to the number. If this setting is greater than ``0`` then the
setting ``THOUSAND_SEPARATOR`` will be used as the separator between those
setting :setting:`THOUSAND_SEPARATOR` will be used as the separator between those
groups.
See also ``THOUSAND_SEPARATOR``
See also :setting:`THOUSAND_SEPARATOR`.
.. setting:: PASSWORD_RESET_TIMEOUT_DAYS
PASSWORD_RESET_TIMEOUT_DAYS
---------------------------
Default: ``3``
The number of days a password reset link is valid for. Used by the
:mod:`django.contrib.auth` password reset mechanism.
.. setting:: PREPEND_WWW