Skip to main content

Django admin changelist CSS styling

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-liststyle-0.1.tar.gz (1.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page