django 1.11 報表:django.template.exceptions.TemplateDoesNotExist:

crystalnsd發表於2017-08-24

解決方法:
在settings.py 中TEMPLATES 引數 dirs加入設定:os.path.join(BASE_DIR, ‘templates’).replace(‘\’, ‘/’)
TEMPLATES = [
{
‘BACKEND’: ‘django.template.backends.django.DjangoTemplates’,
‘DIRS’: [os.path.join(BASE_DIR, ‘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’,
],
},
},
]

注意:windows 必須加上replace(‘\’, ‘/’)

相關文章