Re: New Feature discussion: making admin app & model url configurable

2018-06-29 Thread knyght
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

Re: Inheritance in admin classes

2015-07-02 Thread knyght
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)

Inheritance in admin classes

2015-07-01 Thread knyght
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