Django TemplateDoesNotExist at / rango /

时间:2017-01-24 14:15:17

标签: django django-templates

我之前已经看过这个问题,但我已经在使用较新的TEMPLATES数据结构,这是常见的解决方案。

从django书的探戈中,我目前在第4单元。当我使用python manage.py runserver

运行我的程序时

我收到以下错误:

TemplateDoesNotExist at /rango/

rango/index.html

Request Method:     GET
Request URL:    http://127.0.0.1:8000/rango/
Django Version:     1.5.1
Exception Type:     TemplateDoesNotExist
Exception Value:    

rango/index.html

以下是我的~/Workspace/wad2/tango_with_django_project/setings.py文件中的相关代码:

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR, 'tango_with_django_project', 'templates')
.
.
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [TEMPLATE_DIR],
        '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',
            ],
        },
    },
]
.
.

此外,这是我~/Workspace/wad2/rango/views.py文件中的相关代码:

def index(request):
    context_dict = {'boldmessage': "Crunchy, creamy, cookie, candy, cupcake!"}

    return render(request, 'rango/index.html', context_dict)

另外,我无法用直接路径解决这个问题,因为我试图坚持使用动态pahs教程。最后,我的模板位于~/Workspace/wad2/tango_with_django_project/templates/rango/index.html

1 个答案:

答案 0 :(得分:0)

通过更新我的django版本解决了这个问题:

pip install django==1.10.5