In Django I'm trying to divide one app (so only app is in installed_apps) into several subdirs, with the following structure:
app
views.py
app\subdir1
views.py
app\subdir2
views.py
the file app\views.py consist only of
from subdir1.views import *
so I collapse the namespace of app.subdir1.views into app.views. However that's not the desired solution, I rather use
import subdir1.views
and not collapse the namespaces, however this construct makes Django complain with the error "Could not import app.views.subdir1.json. Parent module app.views.subdir1 does not exist." which is of course correct, Because that parent module does not exist.
So the question I would like to raise: is this dir structure possible or not?