Closed andybak closed 9 years ago
In the readme:
class MyModelAdmin(admin.ModelAdmin, ListStyleAdminMixin):
I was under the impression it should be:
class MyModelAdmin(ListStyleAdminMixin, admin.ModelAdmin):
(If I'm wrong I'd better go and check a huge bunch of my code!)
Yep you're right, left to right. Thanks, I'll fix.
In the readme:
I was under the impression it should be:
(If I'm wrong I'd better go and check a huge bunch of my code!)