I have the hair-brained idea of grouping models from different existing apps into one big new shiny app. There's not a super important reason I need to do this, but it would be nice to consolidate all of the code in one subdirectory and it would improve the site to group all the models together in the admin_index under the same module header.
My first thought was to hardcode the existing table names into the db_table
setting in Meta on all the models, and then give each an identical app_label
setting.
But my concern is that this might screw up the ContentType and auth Permission settings for everything. Has anyone tried this before? I've googled around a bit and haven't seen anything that directly the addresses the question, though it seems like a few people have come up with slick ways of reorginizing the admin_index with some custom configuration settings.