Django TemplateDoesNotExist {% extends base.html %} - 模板应该在哪里?

Django TemplateDoesNotExist {% extends base.html %} - where should template be?

我正在启动一个非常简单的 Django 应用程序,但在扩展 html 文件时遇到问题。

我在 my_site/my_app/templates/my_app 中有 base.htmlindex.html

my_site/my_app/templates/my_app/base.htmlmy_site/my_app/templates/my_app/index.html.

index.html 文件中我有 {% extends 'base.html' %}.

我的 settings.py 文件有

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

但是当我在 http://127.0.0.1:8000/index/ 访问我的索引视图时:

def index(request):
    return render(request, 'my_app/index.html')

我收到以下错误:

TemplateDoesNotExist at /index/
base.html
Request Method: GET
Request URL:    http://127.0.0.1:8000/index/
Django Version: 1.10.3
Exception Type: TemplateDoesNotExist
Exception Value: base.html

我是否将 base.html 文件保存在错误的位置,或者是其他地方?我一直没能解决这个问题。

应该在my_site/my_app/templates或my_site/templates。