为什么Django找不到我的模板

时间:2017-02-24 00:31:18

标签: python django

无法理解为什么Django找不到模板。

project/templates/blog/intro.html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
  {% ifis_admin %}
    <p>{{username}} is an admin!</p>
    {% endif %}
<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

views.py

from django.shortcuts import render
from django.shortcuts import render_to_response

# Create your views here.
def intro(request):
    render(request, "blog/intro.html")

错误:TemplateDoesNotExist at blog/intro.html

编辑:还有模板设置。不确定,但似乎没事。

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        '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',
            ],
        },
    },
]

1 个答案:

答案 0 :(得分:1)

如果博客是您的应用程序而项目是您的djangoproject:   通过文档(here),您需要将模板放入其中     项目/博客/模板/博客/ intro.html 唠叨我的英语