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