aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/urls.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-12 22:40:20 +0100
committerAymeric Augustin2013-11-12 22:40:20 +0100
commit1062d9cf878b4bdc6f0e0f6434668cd7eb289998 (patch)
treee3e400deec4a8c772fbc025e9144b0a380715b43 /debug_toolbar/urls.py
parentf48039e3bad9e24a59a25ed5636b428e11784da9 (diff)
downloaddjango-debug-toolbar-1062d9cf878b4bdc6f0e0f6434668cd7eb289998.tar.bz2
Make it possible for panels to provide URLs and views.
Fix #448.
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'),
-)