Changeset 8215 for django/branches/gis/docs/authentication.txt
- Timestamp:
- 08/05/08 12:15:33 (5 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/docs/authentication.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7978 to /django/trunk:1-8214
django/branches/gis/docs/authentication.txt
r7979 r8215 518 518 519 519 * ``form``: A ``Form`` object representing the login form. See the 520 ` newforms documentation`_ for more on ``Form`` objects.520 `forms documentation`_ for more on ``FormWrapper`` objects. 521 521 * ``next``: The URL to redirect to after successful login. This may contain 522 522 a query string, too. … … 558 558 {% endblock %} 559 559 560 .. _ newforms documentation: ../newforms/560 .. _forms documentation: ../forms/ 561 561 .. _site framework docs: ../sites/ 562 562 … … 632 632 633 633 Allows a user to reset their password, and sends them the new password 634 in an e mail.634 in an e-mail. 635 635 636 636 **Optional arguments:** … … 641 641 642 642 * ``email_template_name``: The full name of a template to use for 643 generating the e mail with the new password. This will default to643 generating the e-mail with the new password. This will default to 644 644 ``registration/password_reset_email.html`` if not supplied. 645 645 … … 697 697 698 698 * ``django.contrib.auth.forms.PasswordResetForm``: A form for resetting a 699 user's password and e mailing the new password to them.699 user's password and e-mailing the new password to them. 700 700 701 701 * ``django.contrib.auth.forms.UserCreationForm``: A form for creating a
