summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-01-18 18:38:12 -0500
committerTim Graham <timograham@gmail.com>2013-01-18 18:38:12 -0500
commit0375244eaeae1e2c09cc58c4c62e8f9e951217d0 (patch)
treefc58a7dfe814e66cbbef3cff1cc63ff98a1b7a8e /docs
parent1dd749284325ea8fe747a3728ed92bafef4ff6a0 (diff)
Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPS
Thanks dpravdin and Jordan Messina.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/customizing.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 5f48e82e2b..cf031c7b84 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -404,8 +404,9 @@ the :setting:`AUTH_USER_MODEL` setting that references a custom model::
AUTH_USER_MODEL = 'myapp.MyUser'
-This dotted pair describes the name of the Django app, and the name of the Django
-model that you wish to use as your User model.
+This dotted pair describes the name of the Django app (which must be in your
+:setting:`INSTALLED_APPS`), and the name of the Django model that you wish to
+use as your User model.
.. admonition:: Warning