Personally, I'm not sure I see that much value. As I see it, the admin is
intended for technical users, not as a general admin interface for end
users (in this context I'm mostly talking about non-programmers). While it
can and I sometimes do allow end-users to use the admin directly, I really
I think it could be - if not the exact same issue - one that would be fixed
by the same patch. My specific use case is something like this:
class MyUserAdmin(UserAdmin):
def get_fieldsets(self, request, obj=None):
fieldsets = super().get_fieldsets(request, obj)
fieldsets[0][1]
Hello all,
So, I was talking to kezabelle on IRC some months back about a problem I
was having, and finally remembered to post something.
If I inherit from an admin class, and override something like get_fields(),
I was getting back duplicates of fields if I used super() to get the
existing fi