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:41:52 -0500 |
| commit | e17d98ff0292caf02b62a3e84e10e3aaff3f4015 (patch) | |
| tree | 3cf7340dbd9f9c887ad859845a08dd8730832842 | |
| parent | 116d2098f61cff44596175b5d8b9d8d0d4005a0e (diff) | |
[1.6.x] Removed doc note about PasswordResetForm requiring an integer PK.
This limitation was lifted in refs #14881.
Backport of a7aaabfaf1fa4c20065ab1133d49f40d4de6b409 from master
| -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 b205f5fda0..bfe24116d7 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -731,9 +731,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` |
