1👍
✅
You can display any field of your model in column by creating custom admin class for particular model.
Simply subclass ModelAdmin
and give it list_display
attribute that will contain list of names of your fields. They will be displayed as separate columns. You can also create custom columns, all is described in docs
Source:stackexchange.com