Django 2.1.7-“位于/ munichlivingapp / seekers /的TemplateDoesNotExist

时间:2019-03-30 13:00:18

标签: django

Django 2.1.7-“位于/ munichlivingapp / seekers /的TemplateDoesNotExist”

(相同的问题:Templates Django (Does not exist at/)

1)浏览器错误消息:file1

2)我的项目文件结构:

file2

3)我的settings.py文件的相关部分:

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',
                "django.core.context_processors.media",
            ],
        },
    },
]

我尝试了在Stack Overflow上找到的3个解决方案,但没有一个起作用。

(在TEMPLATE_DIRS词典中)

1)解决方案1:

'DIRS': [ os.path.join(BASE_DIR, "templates")],

2)解决方案2:

'DIRS': ['templates'],

3)解决方案3:

TEMPLATE_DIRS = (
    ' /home/mycode/mysite/templates/',
 )

1 个答案:

答案 0 :(得分:0)

template_name='seekers_list.html'更改为template_name='munichlivingapp/seekers_list.html'

因为您将模板保留在templates/munichlivingapp目录中。