用的是1.9版本。
需要在settings.py文件中设置TEMPLATES下的DIRS
如下:
TEMPLATES = [
{
‘BACKEND‘: ‘django.template.backends.django.DjangoTemplates‘,
‘DIRS‘: [
‘/home/html/example.com‘,
‘/home/html/default‘,
],
},
{
‘BACKEND‘: ‘django.template.backends.jinja2.Jinja2‘,
‘DIRS‘: [
‘/home/html/jinja2‘,
],
},
]
作者:Chison
链接:http://www.zhihu.com/question/29665145/answer/83242004
来源:知乎
著作权归作者所有,转载请联系作者获得授权。
时间: 2024-10-05 04:43:07