summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-01 11:38:53 -0500
committerTim Graham <timograham@gmail.com>2015-01-01 11:38:53 -0500
commita7aaabfaf1fa4c20065ab1133d49f40d4de6b409 (patch)
treecfd22549a95abf041ed1355422bacf12c16da2f1 /docs
parente80f59e3bbaeccd9ee72e4cd9d2d01fc942d08f6 (diff)
Removed doc note about PasswordResetForm requiring an integer PK.
This limitation was lifted in refs #14881.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/customizing.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 2bf4b9ba8e..1a5e33f3ba 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -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`