Compare commits

..

No commits in common. "11cc94d59c46eb32b847dc2e67eea3c0c877a289" and "dc7df4b28a88caa78e384e66b03b441193459f13" have entirely different histories.

2 changed files with 1 additions and 6 deletions

View file

@ -1,4 +0,0 @@
from django.conf import settings
def debug(context):
return {'DEBUG': settings.DEBUG}

View file

@ -14,7 +14,7 @@ import os, environ
env = environ.Env(
# set casting, default value
DEBUG=(bool, False)
DEBUG=(bool, True)
)
# Build paths inside the project like this: BASE_DIR / 'subdir'.
@ -94,7 +94,6 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'apps.context_processors.debug',
],
},
},