# django-liststyle **Repository Path**: scyllake/django-liststyle ## Basic Information - **Project Name**: django-liststyle - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-04-02 - **Last Updated**: 2022-04-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Style your django admin changelist rows with ease! Update: now Python 3 compatible ### Install using pip $ pip install django-liststyle==0.2b ### Add liststyle to your settings BEFORE django.contrib.admin INSTALLED_APPS = { ... 'liststyle', ... 'django.contrib.admin', ... } ### Add to your ModelAdmin classes 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. An example of a custom template from the "grappelli" package is included in templates/admin/ dir.