在我的settings.py文件中,我尝试了很多不同的东西,但无论我放什么,它都不会超越/home/orangeman555/templates/
。
Django tried loading these templates, in this order:
Using loader django.template.loaders.filesystem.Loader:
/home/orangeman555/templates/home.html (File does not exist)
以下是TEMPLATES设置的内容:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ['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',
# `allauth` specific context processors
'allauth.account.context_processors.account',
'allauth.socialaccount.context_processors.socialaccount',
],
},
},
]
我已经根据stackexchange错误尝试了各种各样的东西,但没有TEMPLATE_DIRS设置似乎让它“唤醒”
这是在生活环境中 - 您可以看到错误here
我可能会错过什么?
.
├── db.sqlite3
├── fabfile.py
├── fabfile.py~
├── fabfile.pyc
├── manage.py
├── req.tx
├── static
│ ├── fonts
│ │ └── bootstrap
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── images
│ ├── javascripts
│ │ ├── bootstrap
│ │ │ ├── affix.js
│ │ │ ├── alert.js
│ │ │ ├── button.js
│ │ │ ├── carousel.js
│ │ │ ├── collapse.js
│ │ │ ├── dropdown.js
│ │ │ ├── modal.js
│ │ │ ├── popover.js
│ │ │ ├── scrollspy.js
│ │ │ ├── tab.js
│ │ │ ├── tooltip.js
│ │ │ └── transition.js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── bootstrap-sprockets.js
│ └── stylesheets
│ ├── framework.css
│ └── styles.css
├── templates # ********TRYING TO LOAD THIS HERE *********
│ ├── base.html
│ ├── flatpages
│ │ └── default.html
│ ├── footer.html
│ ├── home.html
│ ├── menu.html
│ ├── payment-cancel.html
│ ├── payment.html
│ ├── payment-return.html
│ └── profile.html
└── vendsite
├── db.sqlite3
├── __init__.py
├── __init__.py~
├── __init__.pyc
├── settings.py
├── settings.pyc
├── signals.py
├── signals.pyc
├── urls.py
├── urls.pyc
├── views.py
├── views.pyc
├── wsgi.py
└── wsgi.pyc
答案 0 :(得分:1)
我在django 1.8中有这个设置:
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
ROOT_PATH = os.path.abspath(os.path.dirname(__file__))
PROJECT_HOST = 'servername.com'
PROJECT_DIR = os.path.dirname(os.path.dirname(__file__))
import os.path
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(ROOT_PATH, 'static/')
MEDIA_ROOT = os.path.join(ROOT_PATH, 'media/')
MEDIA_URL = '/media/'
from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
TEMPLATE_CONTEXT_PROCESSORS += (
"django.core.context_processors.request",
)
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader'
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
当我有项目/ templates / base.html -its工作正常时结束 即使我有项目/应用程序/模板/ app_html.html它也有效。 如果仍然出现问题,请设置以下权限: