When defining the list_display array for a ModelAdmin
class, if a BooleanField
or NullBooleanField
is given the UI will use nice looking icons instead of True/False text in the column. If a method that returns a boolean is given, however, it simply prints out True/False.
Is there a way to make it use the pretty icons for a boolean method?