I overridden list_display to display such inline fields:
class opportunityAdmin(admin.ModelAdmin): list_display = ('name', 'Contact', 'Phone', 'Address', 'discovery_date', 'status' , 'outcome') search_fields = ['name', 'tags' , 'description']
My question is that in Django admin, the display name of the header of the built-in fields used the function name: "Contact", "Phone" and "Address", respectively. Actually, I want to display this field title using custom text. I even want to use Chinese to display them. What did I miss?
source share