On template errors, I get the error: AttributeError: 'Settings' object has no attribute 'TEMPLATE_DEBUG'.
On setting the TEMPLATE_DEBUG setting, Django complains that it is deprecated:
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.
Could not having the TEMPLATE_DEBUG setting not result in an error?
On template errors, I get the error:
AttributeError: 'Settings' object has no attribute 'TEMPLATE_DEBUG'
.On setting the
TEMPLATE_DEBUG
setting, Django complains that it is deprecated:Could not having the
TEMPLATE_DEBUG
setting not result in an error?