At Django Admin, we can use "list_display" to choose which column to show.
I want to customize Django admin so that we can decide which column to show dynamically (Not using "list_display) I want the user to be able to use something like a checkbox. Again, not by changing Python codes.
I tried the following but it seems nothing to do with the display of listing.
Dynamic fields in Django Admin
It seems I need to override/extend some Django template using JavaScript but I am not so sure.
Any comment would be greatly appreciated. (I much prefer to implement it in admin rather than outside of admin, though.)
Many thanks,