diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-01 11:38:53 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-01 11:40:08 -0500 |
| commit | 8e68b590abd22dc46e8aa3c963c32713755f6172 (patch) | |
| tree | 4c5442122f6e54d76eea02bfd7734a90ebee1c0c /docs | |
| parent | f461bc02cbfa7c04748e4b2392586fa3835330b1 (diff) | |
[1.7.x] Removed doc note about PasswordResetForm requiring an integer PK.
This limitation was lifted in refs #14881.
Backport of a7aaabfaf1fa4c20065ab1133d49f40d4de6b409 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/customizing.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 1e9d0ed5c9..2c54cc48af 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -734,9 +734,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` |
