Best way to re-use the same django models and admin for multiple apps
- by kepioo
Given a reference app ( called guide), how can I create additional apps that will reuse the same model/admin/views than guide - the motivation behind is to be able to individually control each subapp.
guide
guideApp1
exact same models/admin/views than guide
guideApp2
exact same models/admin/views than guide
in the Admin site, I should have :
1 section for guideApp1 with all the tables defined in guide, that applies to guideApp1
1 section for guideApp12 with all the tables defined in guide, that applies to guideApp2