I have a project with 2 apps
project/
blog/
templates/
index.html
polls/
templates/
index.html
project/
templates/
base.html
index.html
Now i want that the two apps extends the projects base.html
. Is this the way to go? how it is possible and are there better solutions?
There is already an question which is handling this question, but it's only worth mentioning if you dont use split directories: Django project base template
tl;dr: I want to use split directories and want to know how to extend a base template from multiple apps without copying it to every app