找不到Django主页的模板

时间:2013-10-22 10:02:56

标签: python django

我还是Django的新手,我正在尝试创建一个小型网站作为练习。但是我目前遇到了这个错误。如果有人可以解释我哪里出错了,并教我如何解决这个问题,这将是非常好的!我是新手,文档有时难以阅读= [

如果我还需要添加其他内容,请告知我们。

Environment:

Request Method: GET
Request URL: http://localhost:8000/home/

Django Version: 1.5.1
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.messages',
 'django.contrib.staticfiles')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware')

Template Loader Error:
Django tried loading these templates, in this order:
Using loader django.template.loaders.filesystem.Loader:
/home/bradford/Development/Django/pub_pic/~/Development/Django/pub_pic/templates/homepage_template/home.html (File does not exist)
Using loader django.template.loaders.app_directories.Loader:
/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/contrib/auth/templates/homepage_template/home.html (File does not exist)



Traceback:
File "/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
  115.                         response = callback(request, *callback_args, **callback_kwargs)
File "/home/bradford/Development/Django/pub_pic/homepage/views.py" in index
  9.    return render(request,'homepage_template/home.html')
File "/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/shortcuts/__init__.py" in render
  53.     return HttpResponse(loader.render_to_string(*args, **kwargs),
File "/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/template/loader.py" in render_to_string
  170.         t = get_template(template_name)
File "/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/template/loader.py" in get_template
  146.     template, origin = find_template(template_name)
File "/home/bradford/Development/Django/django_1.5.1/local/lib/python2.7/site-packages/django/template/loader.py" in find_template
  139.     raise TemplateDoesNotExist(name)

Exception Type: TemplateDoesNotExist at /home/
Exception Value: homepage_template/home.html

我有一个名为home.html的模板,它位于目录pub_pic/templates/homepage_template/home.html

我的pub_pic urls.py:

from django.conf.urls import patterns, include, url

urlpatterns = patterns('',
    url(r'home/',include('homepage.urls', namespace = 'home')),
)

我的主页urls.py:

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

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



)

主页/ views.py:

from django.http import HttpResponse
from django.template import RequestContext, loader
from django.shortcuts import render, render_to_response

#from homepage.models import 

def index(request):
#   template = loader.get_template('homepage/index.html')
    return render(request,'homepage_template/home.html')

4 个答案:

答案 0 :(得分:3)

在您的settings.py文件中,您应使用以下代码。

 
#settings.py
import os
# Full filesystem path to the project.
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
TEMPLATE_DIRS = (os.path.join(PROJECT_ROOT, "templates"),)

答案 1 :(得分:3)

请按照接受的答案建议不要在设置中包含完整路径。这是“反django”做事方式,即使它确实有效。

在Django中,您可以为项目创建一个模板文件夹,也可以为每个应用程序创建一个模板文件夹。后者允许您将应用程序从一个项目移动到另一个项目(这是它们应该如何工作),但前者可以为整体的一次性项目提供简单性。

您不需要也不应指定绝对路径。在您的设置中,如果您想为项目使用单个模板目录,请使用以下内容:

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

这基本上是说您的模板位于主BASE_DIR路径中名为“templates”的文件夹中。在此示例中,它将是manage.py所在的根目录。现在只需在此根目录中创建一个名为“templates”的文件夹,然后将HTML放入其中(如果您愿意,可以在子文件夹中排列)。

然后可以像

一样加载模板
templt = get_template('mytemplate.html)

假设mytemplate.html文件直接位于根目录下的templates /文件夹中。你可以使用子文件夹,如果你这样做,你应该在引号中指定它们,例如: 'mysubdir / mytemplate.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',

        ],

    },

},

]

这里的关键是

'APP_DIRS': True,

这个(according to the Django docs)指示系统在每个应用程序中查找“templates”文件夹。您的项目将看起来像(假设mybigproject的项目名称)

  

/家庭/我的账户/ mybigproject / myapp1 /模板/

  

/家庭/我的账户/ mybigproject / myapp2 /模板/

相比之下,在第一个场景(单个模板文件夹)中,它只是

  

/家庭/我的账户/ mybigproject /模板/

然而,重要的是要带走你仍然参考

templt = get_template('mytemplate.html)

Django将为您搜索所有应用程序文件夹。 如果它仍然给你一个文件未找到错误,那就是配置事。

如果您指定完整路径,现在需要在移动PC(例如共享项目),项目或应用程序时更改该路径。

答案 2 :(得分:1)

您没有显示TEMPLATE_DIRS设置的值。但是看一下错误消息,看起来你在那里使用~/...。不要这样做:使用完整路径 - /home/bradford/Development/Django/pub_pic/templates

答案 3 :(得分:1)

Installed Applications:
('homepage_template.apps.Homepage_templateConfig', #add this line
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.messages',
 'django.contrib.staticfiles')