[Answer]-Django admin list view customizable by user

1👍

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.

Leave a comment