Style your django admin changelist rows with ease! 

1. Install using pip

2. Add liststyle to your settings.py INSTALLED_APPS

3. Add to your ModelAdmin classes like this --

class MyModelAdmin(admin.ModelAdmin, ListStyleAdminMixin):
    ...
    def get_row_css(self, obj, index):
        if obj.active:
            return 'red red%d' % index
        return ''
        
Note. If you have your own change_list_results.html; you'll need to 
incorporate the changes from the one here.
