Configure a column not to visible by default django admin

By making ConfigurableColumnsMixin I can display all the columns by default i can view all the column. How not to make the columns as default , so that usercan select which column hecan select and then display those coulmns.

admin.py

class ProductAdmin(
TimestampedModelAdminMixin, ConfigurableColumnsMixin, admin.ModelAdmin

):

 list_display = [
    "id",
    "comment",
    "active",
     ]
Back to Top