Django无法找到模板目录

时间:2015-04-19 02:29:31

标签: python django templates directory

我知道有很多类似的问题,但没有一个问题解决了我的问题。

Python版本:3.4 Django版本:1.8

加载http://127.0.0.1:8000/lfstd/时,我在/ lfstd / 获得 TemplateDoesNotExist。

system.py:

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_PATH = os.path.join(BASE_DIR, 'templates')
TEMPLATE_DIRS = (
    TEMPLATE_PATH,
)

lfstd / views.py:

def index(request):
[...]
return render(request, 'lfstd/index.html', context_dict)

project urls.py:

from django.conf.urls import include, url
from django.contrib import admin

url(r'^admin/', include(admin.site.urls)),
url(r'^lfstd/', include('lfstd.urls')),

lfstd urls.py:

from django.conf.urls import patterns, url
from lfstd import views

urlpatterns = patterns('',
    url(r'^$', views.index, name='index'))

在base_dir和template_path上运行print,我得到:

Base dir: C:\Users\Phil\PycharmProjects\TownBuddies
Template path: C:\Users\Phil\PycharmProjects\TownBuddies\templates

这正是我的项目和模板文件夹所在的位置。但是,django并没有在该文件夹中查找模板。它位于以下文件夹中:

C:\Python34\lib\site-packages\django\contrib\admin\templates\lfstd\index.html (File does not exist)
C:\Python34\lib\site-packages\django\contrib\auth\templates\lfstd\index.html (File does not exist)

事实上,如果我在那里移动我的模板,它确实找到它并且它可以工作。

非常感谢任何帮助,我开始使用Django并完全陷入困境......

修改

我将 TEMPLATE_DIRS 更改为 TEMPLATES ,但Django仍然没有在模板文件夹中查找: from the django debug report

2 个答案:

答案 0 :(得分:15)

django 1.8中不推荐使用

TEMPLATE_DIRS设置。您应该使用TEMPLATES代替:

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

我正在用pytest-django进行一些单元测试,突然间我反复出现并完全意外** TemplateDoesNotExist **错误。

在尝试弄清楚发生了什么时,我发现了这个stackoverflow问题。

我终于通过删除所有__pycache__目录解决了这个问题。我已经了解到,当事情突然变得莫名其妙地想要清除__pycache__然后通过试图修复它们来解决问题!

我使用此脚本以递归方式清除所有__pycache__目录,其中包含以下内容的模块位于:

#!/usr/bin/env python
import os
import shutil

#!/usr/bin/env python

import os
import shutil

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

for root, dirs, files in os.walk(BASE_DIR):
    for directory in dirs:
        if directory == '__pycache__':
            shutil.rmtree(os.path.join(root, directory))