Commit 8476baf4 by Ned Batchelder

We should only add the DjDT urls if it is enabled.

parent ceb5655b
...@@ -190,6 +190,7 @@ if settings.DEBUG: ...@@ -190,6 +190,7 @@ if settings.DEBUG:
except ImportError: except ImportError:
pass pass
if 'debug_toolbar' in settings.INSTALLED_APPS:
import debug_toolbar import debug_toolbar
urlpatterns += ( urlpatterns += (
url(r'^__debug__/', include(debug_toolbar.urls)), url(r'^__debug__/', include(debug_toolbar.urls)),
......
...@@ -708,6 +708,7 @@ if settings.DEBUG: ...@@ -708,6 +708,7 @@ if settings.DEBUG:
# in debug mode, allow any template to be rendered (most useful for UX reference templates) # in debug mode, allow any template to be rendered (most useful for UX reference templates)
urlpatterns += url(r'^template/(?P<template>.+)$', 'debug.views.show_reference_template'), urlpatterns += url(r'^template/(?P<template>.+)$', 'debug.views.show_reference_template'),
if 'debug_toolbar' in settings.INSTALLED_APPS:
import debug_toolbar import debug_toolbar
urlpatterns += ( urlpatterns += (
url(r'^__debug__/', include(debug_toolbar.urls)), url(r'^__debug__/', include(debug_toolbar.urls)),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment