TEMPLATE_DEBUG used to be initialized with the value of DEBUG in
settings.py, which was confusing if you change the value of DEBUG in
localsettings.
# Put any settings that are specific to this installation in here.
# Any settings from settings.py can be overridden.
-# For example, enable debugging by commenting in the following line.
+# For example, enable debugging by commenting in the following lines.
#DEBUG = True
+#TEMPLATE_DEBUG = True
PROJECT_DIR = os.path.dirname(__file__)
DEBUG = False
-TEMPLATE_DEBUG = DEBUG
+TEMPLATE_DEBUG = False
ADMINS = (
# Server errors get sent here