simopopov
simopopov

Reputation: 852

Django admin list view customizable by user

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

Answers (1)

shellbye
shellbye

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.

Upvotes: 1

Related Questions