首页 > 代码库 > django TEMPLATES
django TEMPLATES
?: (1_8.W001) The standalone TEMPLATE_* settings were deprecated in Django 1.8 and the TEMPLATES dictionary takes precedence.
You must put the values of the following settings into your default TEMPLATES dict: TEMPLATE_DEBUG.
TEMPLATES = [ { ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
#主要看下面这行。需要将templates添加至dirs中。应该是某个版本改了这个东西,不再是TEMPLATES_DIRS了。 ‘DIRS‘: [os.path.join(os.path.dirname(__file__),‘templates‘).replace(‘\\‘,‘/‘),], ‘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‘, ], }, },]
django TEMPLATES
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。