Skip to content

Commit

Permalink
Removed doc note about PasswordResetForm requiring an integer PK.
Browse files Browse the repository at this point in the history
This limitation was lifted in refs #14881.
  • Loading branch information
timgraham committed Jan 1, 2015
1 parent e80f59e commit a7aaabf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/topics/auth/customizing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -746,9 +746,9 @@ auth views.

* :class:`~django.contrib.auth.forms.PasswordResetForm`

Assumes that the user model has an integer primary key, has a field named
``email`` that can be used to identify the user, and a boolean field
named ``is_active`` to prevent password resets for inactive users.
Assumes that the user model has a field named ``email`` that can be used to
identify the user and a boolean field named ``is_active`` to prevent
password resets for inactive users.

* :class:`~django.contrib.auth.forms.SetPasswordForm`

Expand Down

0 comments on commit a7aaabf

Please sign in to comment.