From f6257a147df0be2f21c390ad10f6cd724b99cd93 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 18 Jan 2013 18:38:12 -0500 Subject: [PATCH] [1.5.x] Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPS Thanks dpravdin and Jordan Messina. Backport of 0375244eae 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 7c17d26b474..8997d6c24d5 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -398,8 +398,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