aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/urls.py
diff options
context:
space:
mode:
authorRob Hudson2008-10-06 13:07:56 -0700
committerRob Hudson2008-10-06 13:07:56 -0700
commite9271bf69ab50cb24e38ac2205847c8d32b83ca8 (patch)
tree621d0ae253fc1990c65224fafac2af1c9a974223 /debug_toolbar/urls.py
parent49a177a41f790a494a933963fd7b2f5216f98a85 (diff)
downloaddjango-debug-toolbar-e9271bf69ab50cb24e38ac2205847c8d32b83ca8.tar.bz2
Just like EXPLAIN, adding the output of straight SELECT statements so you can
view the raw SQL output.
Diffstat (limited to 'debug_toolbar/urls.py')
-rw-r--r--debug_toolbar/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/debug_toolbar/urls.py b/debug_toolbar/urls.py
index e0e4b7a..437d36b 100644
--- a/debug_toolbar/urls.py
+++ b/debug_toolbar/urls.py
@@ -9,5 +9,6 @@ from django.conf import settings
urlpatterns = patterns('',
url(r'^__debug__/m/(.*)$', 'debug_toolbar.views.debug_media'),
+ url(r'^__debug__/sql_select/$', 'debug_toolbar.views.sql_select', name='sql_select'),
url(r'^__debug__/sql_explain/$', 'debug_toolbar.views.sql_explain', name='sql_explain'),
)