aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/urls.py')
-rw-r--r--debug_toolbar/urls.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/debug_toolbar/urls.py b/debug_toolbar/urls.py
deleted file mode 100644
index 860187a..0000000
--- a/debug_toolbar/urls.py
+++ /dev/null
@@ -1,18 +0,0 @@
-"""
-URLpatterns for the debug toolbar.
-
-The debug toolbar middleware will monkey-patch them into the default urlconf
-if they aren't explicitly included.
-"""
-
-from __future__ import unicode_literals
-
-from django.conf.urls import patterns, url
-
-urlpatterns = patterns('debug_toolbar.views', # noqa
- url(r'^render_panel/$', 'render_panel', name='render_panel'),
- url(r'^sql_select/$', 'sql_select', name='sql_select'),
- url(r'^sql_explain/$', 'sql_explain', name='sql_explain'),
- url(r'^sql_profile/$', 'sql_profile', name='sql_profile'),
- url(r'^template_source/$', 'template_source', name='template_source'),
-)