Minor fixes in settings/

- Typo
- Removes old comments
- Moves the template debug context processor back to the common file: it
  won't be loaded anyway if `DEBUG=False`.
- Ddt's middleware should be loaded first
This commit is contained in:
Martin Pépin 2017-04-15 11:09:16 +01:00
parent 40abe81402
commit ff73a635f8
2 changed files with 6 additions and 10 deletions

View file

@ -12,10 +12,6 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
DEBUG = True
TEMPLATES[0]["OPTIONS"]["context_processors"] += [
'django.template.context_processors.debug'
]
# ---
# Apache static/media config
@ -46,7 +42,10 @@ def show_toolbar(request):
return True
INSTALLED_APPS += ["debug_toolbar"]
MIDDLEWARE_CLASSES += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
MIDDLEWARE_CLASSES = (
["debug_toolbar.middleware.DebugToolbarMiddleware"]
+ MIDDLEWARE_CLASSES
)
DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': show_toolbar,
}