summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-05-19 02:00:50 -0700
committerAndrew Godwin <andrew@aeracode.org>2013-05-19 02:00:50 -0700
commitcf56536ac7e63231ba63b602fbb89bd3d936f4fe (patch)
tree4615c65cece74bf0e46cfc73fead456c5a41be79 /docs/topics
parent726e57679428336888b01d63836592d26645d5c9 (diff)
parent0b3a6ead88c84aa30f11ad51ad3d89a016f9dd67 (diff)
Merge pull request #1145 from postrational/ticket_20233
Fixed #20233 - Full custom user model example isn't really full
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/auth/customizing.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 56f3e60350..4b6721ba21 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -1075,7 +1075,6 @@ code would be required in the app's ``admin.py`` file::
(None, {'fields': ('email', 'password')}),
('Personal info', {'fields': ('date_of_birth',)}),
('Permissions', {'fields': ('is_admin',)}),
- ('Important dates', {'fields': ('last_login',)}),
)
add_fieldsets = (
(None, {
@@ -1092,3 +1091,8 @@ code would be required in the app's ``admin.py`` file::
# ... and, since we're not using Django's builtin permissions,
# unregister the Group model from admin.
admin.site.unregister(Group)
+
+Finally specify the custom model as the default user model for your project using the :setting:`AUTH_USER_MODEL` setting in your ``settings.py``::
+
+ AUTH_USER_MODEL = 'customauth.MyUser'
+