Alchemist of the web

Results 1 comments of Alchemist of the web

I had the simular problem. I solved it by putting SortableAdminBase as first in inheritance. incorrect: `class MyOtherModelAdmin(admin.ModelAdmin, SortableAdminBase):` correct `class MyOtherModelAdmin(SortableAdminBase, admin.ModelAdmin):`