Reputation: 852
Is there a way to make list view columns to be customizable by user. I ask for something ready to use (if there are not something similar, i will write something mine).
Upvotes: 0
Views: 69
Reputation: 4858
In your admin.py you can do this:
from django.contrib import admin class UserAdmin(admin.ModelAdmin): list_display = ('name', 'age') # column to display
more info here
So diango-xadmin is the final answer.
diango-xadmin
Upvotes: 1