From f7c2852f30fd5fe6980d6983725a41e64c6d2c53 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 22 Jan 2014 10:17:44 -0500 Subject: [PATCH] [1.6.x] Fixed #21726 -- Clarified that password should not be included in REQUIRED_FIELDS. Thanks russellm for the report. Backport of 6f06c749b7 from master --- docs/topics/auth/customizing.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 7c1cb94803..0788038f07 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -530,8 +530,9 @@ password resets. You must then provide some key implementation details: .. note:: - ``REQUIRED_FIELDS`` must contain all required fields on your User - model, but should *not* contain the ``USERNAME_FIELD``. + ``REQUIRED_FIELDS`` must contain all required fields on your + ``User`` model, but should *not* contain the ``USERNAME_FIELD`` or + ``password`` as these fields will always be prompted for. .. attribute:: is_active