Django 1.10:base_site.html 覆盖不起作用
Posted
技术标签:
【中文标题】Django 1.10:base_site.html 覆盖不起作用【英文标题】:Django 1.10: base_site.html override not working 【发布时间】:2017-07-13 23:20:27 【问题描述】:我正在使用自定义视图在 Django 中创建一个站点,并希望链接到管理页面上的该视图。但即使我按照指示在Django tutorial 中覆盖base_site.html
,也没有任何变化。不管输入最简单的变化:
% extends "admin/base.html" %
% block title % title | site_title|default:_('Django site admin') % endblock %
% block branding %
<h1 id="site-name"><a href="% url 'admin:index' %">Test</a></h1>
% endblock %
% block nav-global %% endblock %
甚至是非常激烈的事情,我根本不扩展base.html
:
<h1>Test</h1>
我的目录与它们应有的完全一样,其中包含新的base_site.html
:
└─myproject
└── myproject
└── templates
└── admin
└── base_site.html
这是我目前的settings.py
:
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.10/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = <mysecretkey>
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'easy_thumbnails',
'filer',
'mptt',
'myapp',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'myproject.urls'
TEMPLATES = [
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, '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',
],
,
,
]
WSGI_APPLICATION = 'myproject.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
DATABASES =
'default':
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
# Password validation
# https://docs.djangoproject.com/en/1.10/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.10/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.10/howto/static-files/
STATIC_URL = '/static/'
# Thumbnail settings for retina displays
THUMBNAIL_HIGH_RESOLUTION = True
# Thumbnail processing
THUMBNAIL_PROCESSORS = (
'easy_thumbnails.processors.colorspace',
'easy_thumbnails.processors.autocrop',
#'easy_thumbnails.processors.scale_and_crop',
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
'easy_thumbnails.processors.filters',
)
我重新启动了服务器,并使用了不同的浏览器,但我的更改都没有显示出来。
我在哪里做错了什么,还是教程给出的说明完全不正确?
【问题讨论】:
【参考方案1】:Django 教程实际上是正确的并且工作正常。问题是:“templates”目录是第一个“mysite”的子目录,而不是第二个。
这个其实教程里讲的很清楚,但是很容易混淆,把“模板”直接放在错误的目录下。
换句话说,您希望“模板”出现在此处:
mysite/templates
不在这里:
mysite/mysite/templates
Tutorial step #7 说明了这一点。这是目录结构的屏幕截图,因为它应该在那个时间点:
只需将您的“模板”目录上移一层就可以了。
【讨论】:
其他人来这里回答的快速提示:您还必须使用'DIRS': [os.path.join(BASE_DIR, 'templates')]
编辑 settings.py 中的 TEMPLATES
值【参考方案2】:
在将您的示例与我正在使用的 Django 1.10 项目进行比较时,我发现了两个不同之处:
-
我的文件树包含项目文件的应用程序:
my_project
--my_project
----templates
------admin
猜测这没有任何区别
-
在 TEMPLATES DIRS 属性中,我包含了模板文件夹的父目录的名称:
'DIRS': [join(BASE_DIR, 'my_project/templates').replace ('\\','/'),],
请试一试
【讨论】:
哦,我的文件树是一样的,我忘了把第一个my project
目录放在树里。编辑。
这可行,但我会稍等片刻,看看是否有对内部文件树引用较少的答案。以上是关于Django 1.10:base_site.html 覆盖不起作用的主要内容,如果未能解决你的问题,请参考以下文章
Django 1.10 ?????????????????????????????????
获取服务器响应 (400):来自 Pypi 的无效分类器“Framework :: Django :: 1.10”