I have a project with 2 apps
project/
blog/
templates/
index.html
polls/
templates/
index.html
project/
In current Django (1.10) TEMPLATE_DIRS is deprecated, so:
templates
directory at the project root,In settings.py find TEMPLATES -> DIRS and add it like this:
TEMPLATES = [
{
...
'DIRS': [(os.path.join(BASE_DIR, 'templates')),],
...
}
Add a base.html to that directory.
{% extends 'base.html' %}