[Answered ]-Django admin cannot order function column

2👍

Django doesn’t magically know that safe_description is mapped to your description column.

Specify the db column with the admin_order_field attribute

safe_description.admin_order_field = 'description'

Leave a comment