Dynamically tune django admin columns?

Is it possible to allow users to select / dynamically change the columns displayed in the list of objects in Django administration?

Things can be implemented “from scratch” by changing the “change_list.html” template, but I was wondering if anyone already has the same problem and / or if any django-pluggin can do this.

Thanks in advance,

+3
source share
3 answers

django-xadmin :

django x-admin dynamic columns

, , ( '13). , .

: admin : admin

. x-admin, , OP.

+2

If I interpreted your question correctly, the solution should set list_display in your ModelAdmin extension for this object. Refer to the Django tutorial, part 2 .

0
source

Source: https://habr.com/ru/post/1740330/


All Articles