In the Django admin, if the field is a BooleanField or NullBooleanField, Django will display a nice "on" or "off" icon instead of True or False.
Now I donโt actually have a BooleanField in my model, I have a fior property that I would like to display icons, but when I try to do this, Django screams that 'SomeAdmin.list_filter[0]' refers to 'is_activated' which does not refer to a Field.
Is it possible to display these cute little icons for this field without hacking Django too much.
thanks
source share