标签:join 红色 processor tin template span 文件 process 复习
设置模板路径:在settings.py中找到templates,添加红色部分,表示设置路径到与setting.py上级目录同级的“templates”文件夹下
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‘,
],
},
},
]
标签:join 红色 processor tin template span 文件 process 复习
原文地址:http://www.cnblogs.com/xyxpython/p/6637637.html