2
You have 'DIRS': [BASE_DIR],
but your templates are not in BASE_DIR, they are in BASE_DIR/templates. You should have:
'DIRS': [os.path.join(BASE_DIR, 'templates')],
Source:stackexchange.com
2
You have 'DIRS': [BASE_DIR],
but your templates are not in BASE_DIR, they are in BASE_DIR/templates. You should have:
'DIRS': [os.path.join(BASE_DIR, 'templates')],