Привет, я следую учебному курсу на сайте djangoproject, и я получаю сообщение об ошибке на моем локальном хостинге:
Unknown parameters: TEMPLATE_DEBUG
Мои параметры settings.py выглядят следующим образом:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'TEMPLATE_DEBUG':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',
],
},
},
]
Я добавил "TEMPLATE_DEBUG" в TEMPLATE, потому что в противном случае я получаю следующее предупреждение
?: (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.
Моя папка шаблонов находится в моих приложениях i.e.:
my_project_name/polls/templates/polls/index.html