litchfield / django-liststyle

Style your django admin changelist rows with ease!
BSD 3-Clause "New" or "Revised" License
35 stars 27 forks source link

Don't mixins come first? #4

Closed andybak closed 9 years ago

andybak commented 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!)

litchfield commented 9 years ago

Yep you're right, left to right. Thanks, I'll fix.