设置 Django 模板的位置
Posted
技术标签:
【中文标题】设置 Django 模板的位置【英文标题】:Setting the Location of Django Templates 【发布时间】:2016-08-07 10:22:27 【问题描述】:所以我正在尝试通过修改教程程序来学习Django,顺便说一下这是1.9版。
我有我的项目文件夹,称为 mud,然后是我的 app 文件夹,polls。在投票应用程序中有一个模板文件夹,然后它会回到投票文件夹。当我想创建一个模板时,我只是把它放在那里。我还想为我的主页创建一个模板,该模板将在投票之外。
我尝试在基本 MUD 文件夹以及 mud/mud 文件夹中创建一个模板文件夹,但均无效。我总是在寻找...的 index.html 时遇到错误
Django 尝试按以下顺序加载这些模板:
使用引擎 django: django.template.loaders.app_directories.Loader:/home/andaib/themudreport.com/env/lib/python2.7/site-packages/django/contrib/admin/templates/mud/index.html(源不存在) django.template.loaders.app_directories.Loader:/home/andaib/themudreport.com/env/lib/python2.7/site-packages/django/contrib/auth/templates/mud/index.html(源不存在) django.template.loaders.app_directories.Loader: /home/andaib/themudreport.com/mud/polls/templates/mud/index.html(源不存在)
它似乎只在泥/民意调查......寻找泥/民意调查/泥。
对我来说,这似乎是疯狂的杂乱无章,我确信必须有一种方法可以添加到我试图访问的模板的文件夹列表中,但在我的 settings.py 中我没有找到它。也许有人可以提供帮助?对于 django 经验丰富的人来说,这感觉像是 2 秒的修复。
"""
Django settings for mud project.
Generated by 'django-admin startproject' using Django 1.9.4.
For more information on this file, see
https://docs.djangoproject.com/en/1.9/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.9/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '=gc!jwa)#q%8t&cl^wi3ago!=dq)ws)xtg5h1s_mgb75q$@uzm'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'polls',
]
MIDDLEWARE_CLASSES = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'mud.urls'
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',
],
,
,
]
WSGI_APPLICATION = 'mud.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
DATABASES =
'default':
'ENGINE': 'django.db.backends.mysql',
'NAME': '*****',
'USER': '*****',
'PASSWORD': '*****',
'HOST': '*****',
'PORT': '*****',
# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
,
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
,
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
,
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
,
]
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, javascript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.dirname(BASE_DIR) + '/public/static/'
【问题讨论】:
【参考方案1】:试试这个:
TEMPLATES = [
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates')
],
'APP_DIRS': True,
'OPTIONS':
'debug': DEBUG,
,
,
]
此语法在 Dj v1.9 中已被弃用
TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
【讨论】:
我已经有了第 28 行的 TEMPLATE_DIRS 列表,还需要删除 TEMPLATES 列表吗? 谢谢两位,您的回答和他的回答相结合!像您说的那样删除了模板列表,并像他一样将“泥”添加到了联接中。【参考方案2】:在您的/polls/templates/
文件夹中找到模板,因为polls
在您的INSTALLED_APPS
中。应用目录文件夹不会搜索/mud/templates
或mud/mud/template
,因为mud
和mud/mud
不是应用。
如果要将模板添加到 /mud/templates
,请将其添加到 TEMPLATES
设置的 DIRS
选项中。
'DIRS': [os.path.join(BASE_DIR, 'templates')],
同样,如果您想要 /mud/mud/templates
中的模板,您可以这样做:
'DIRS': [os.path.join(BASE_DIR, 'mud', 'templates')],
【讨论】:
我已经在代码中有那行。我应该像 Du D 建议中那样删除模板列表吗? 删除TEMPLATE_DIRS
行,然后更改DIRS
inside TEMPLATES
(此时你有'DIRS': [],
)
谢谢你们!你的两个回答的组合做到了!以上是关于设置 Django 模板的位置的主要内容,如果未能解决你的问题,请参考以下文章