Two of my model’s fields are “title” and “summary”. Right now, “title” is the first field in the ModelAdmin’s list_display, which makes it link to the change page. I have some other fields in list_display as well.
I’d like to make the admin change list page display “summary” under “title” in plain, unlinked text, in the same column as “title”. Is this possible? I’m using Django 1.1.
Thanks
Kind of. You can setup your own custom
list_displayobjects to use. So for example, in your case you may do something like so:Then within your admin class:
More information can be found on the list_display documentation.