diff options
| author | Rob Hudson | 2008-10-06 13:07:56 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-10-06 13:07:56 -0700 | 
| commit | e9271bf69ab50cb24e38ac2205847c8d32b83ca8 (patch) | |
| tree | 621d0ae253fc1990c65224fafac2af1c9a974223 /debug_toolbar/urls.py | |
| parent | 49a177a41f790a494a933963fd7b2f5216f98a85 (diff) | |
| download | django-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.py | 1 | 
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'),  ) | 
