标签:lang lan template app pre text ons got div
1.模板文件问题
一直提示找不到模板,setting里面也配置过了,配置如下(这是添加内容,1.6里面原先没有这些内容):
TEMPLATES = [ { ‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘, ‘DIRS‘: [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‘, ], }, }, ]
困扰了一天
后来发现1.6里面是不需要这个的,把上面的删掉,只需一行代码搞定
TEMPLATE_DIRS=( os.path.join(BASE_DIR,‘templates‘),)
完工
标签:lang lan template app pre text ons got div
原文地址:http://www.cnblogs.com/ningmeng666/p/7052599.html