[Solved]-Overriding list_display in Django admin with custom verbose name

22👍

You would need to define the short_description attribute on your functions: https://docs.djangoproject.com/en/stable/ref/contrib/admin/actions/#writing-action-functions

For example:

Contact.short_description = 'foo'

👤Abid A

Leave a comment