Each model's admin could have a setting front_page_view which would replace the standard "model add change" slot with expanded or tailored information.
You'd need at least three settings: front_page_view for the topmost admin page, type_page_view for the per-type list and app_index_page_view for the per-app-and-type list. (There'll be sane defaults, so if you want all three you can just set front_page_view and if you want the last two you can set type_page_view.)
Each model's admin could have a setting
front_page_view
which would replace the standard "model add change" slot with expanded or tailored information.You'd need at least three settings:
front_page_view
for the topmost admin page,type_page_view
for the per-type list andapp_index_page_view
for the per-app-and-type list. (There'll be sane defaults, so if you want all three you can just setfront_page_view
and if you want the last two you can settype_page_view
.)