setup

Update settings.py, under TEMPLATES, DIRS to point to templates.

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            os.path.join(BASE_DIR, 'templates')
        ],

make the directory in the project folder next to the app folders.

mkdir templates