From dce8945ea63c636a71f3bc5d610dccebc08c52eb Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Jul 2013 12:41:01 -0400 Subject: [PATCH] Fixed #20762 -- Clarified that add_fieldsets is not a standard ModelAdmin attribute. --- 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 da99166079..e27f257f80 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -1060,6 +1060,8 @@ code would be required in the app's ``admin.py`` file:: ('Personal info', {'fields': ('date_of_birth',)}), ('Permissions', {'fields': ('is_admin',)}), ) + # 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',),