首页 > 其他 > 详细

django TEMPLATES

时间:2016-09-10 20:32:48      阅读:282      评论:0      收藏:0      [点我收藏+]
?: (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

原文:http://www.cnblogs.com/drgcaosheng/p/5860023.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!