From cbfe56c856f9bb79fdd36d7e573c6156bb88720a Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Jul 2013 12:41:01 -0400 Subject: [PATCH] [1.5.x] Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin attribute. Backport of dce8945ea6 from master --- docs/topics/auth/customizing.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 824d233944..61cbb1196a 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -1071,6 +1071,8 @@ code would be required in the app's ``admin.py`` file:: ('Permissions', {'fields': ('is_admin',)}), ('Important dates', {'fields': ('last_login',)}), ) + # add_fieldsets is not a standard ModelAdmin attribute. UserAdmin + # overrides get_fieldsets to use this attribute when creating a user. add_fieldsets = ( (None, { 'classes': ('wide',),