[Fixed]-How do I show a django model in admin as a spreadsheet instead of list of objects

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

Leave a comment