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.
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.
Release files for django-liststyle 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-liststyle-0.1.tar.gz | 1.4 kB | Details |
Release files / django-liststyle-0.1.tar.gz
| Download URL | django-liststyle-0.1.tar.gz |
|---|---|
| Size | 1.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
183f46a662a91f2b3c2a999fd36a61f3d162e0b29b3140d0d1be9d632b2ebd48
|
|
BLAKE2b-256 checksum How to use checksums |
a857be1c36c286cf6a4fd1fe894e77ef3cb9e109d6f63a8cff149af763ef2088
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |