Is there a way to customize the way a field is displayed in the django admin results list?
For example, I’d like to display an image based on the field value, just like boolean fields are displayed using an image rather than text value.
Is there a way to customize the way a field is displayed in the
Share
Define a method in your admin class that returns the HTML you want.