Reputation: 15861
Is possible in Django to have a sub_app?
Project->Intranet->sub_app1
Project->Intranet->sub_app2
Project->Catalog
Project->App
Upvotes: 1
Views: 64
Reputation: 5788
I think yes, than your settings.py will look like this:
INSTALLED_APPS = (
'Intranet.sub_app1',
'Intranet.sub_app2',
'Catalog',
'App',
)
try it.
Upvotes: 4