Всем привет, как лучше делать, отдельно папка templates, static и в ней все шаблоны и внутри этой папки по приложениям разбиты файлы, ну к примеру так:
src/
app1/
modules.py
views.py
...
app2/
modules.py
views.py
...
frontend/
templates/
app1/
app2/
other templates
static/
js/
css/
images/
other staticfiles
Либо лучше внутрь каждого app запихивать папку templates и static и там держать все? т.е.:
src/
app1/
modules.py
views.py
...
templates/
static/
app2/
modules.py
views.py
...
templates/
static/



