I created a module which extends the possibilities of ModelAdmin, in order to be able to create custom LeftAndMains without extending LeftAndMain directly, but to use the power of ModelAdmin.
Some Silverstripers already knows this from the Google dev list and the IRC channel and I think it can be usefull for a wider audience.
PanelModelAdmin allows a flexible manner to devide the left sidebar in seperate searchpanels, menulists or custom panels which all can have their own managed DataObjects. In this way you have more flexibility to organize your DataObject management.
See this slideshare for how it looks and what it can do:
http://www.slideshare.net/marvanni/panelmodeladmin-example
Features:
Create custom panels for the sidebar
Create custom (nested) menulists (with parent => child relations)
Create custom panels to show whatever you want (plain content, rss etc.)
Use TableListField, TableField or ComplexTableField for the ResultsField (DOM support is in progress).
Show a default ResultsForm on the initial view of the admin panel.
Show custom content, instead of a ResultsTable ( you can use this to show for example a Calendar, Dashboard or whatever you put in your DataObject).
Obeys canView, canEdit, canDelete and canCreate on each record instead of only the complete set (i.e. hide rows that authors are not allowed to see, or limit the amount of records they can create).
There are still some little refinements to do, but on a custom NewsLetter and Webshop module it works solid.
You can checkout the module from svn on:
http://svn.axyrmedia.com/panelmodeladmin/trunk/
A sample implementation can be found on:
http://svn.axyrmedia.com/productadmin/trunk/
Or download attached files
I would like to know what you think of it and if you have any improvements let me know!