aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/tests/urls.py
blob: 7c99b03367f83eb3ccfb4328a9e9c52be5e93e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
URLpatterns for the debug toolbar. 

These should not be loaded explicitly; the debug toolbar middleware will patch
this into the urlconf for the request.
"""
from django.conf.urls.defaults import *
from django.contrib import admin

admin.autodiscover()

urlpatterns = patterns('',
    url(r'^execute_sql/$', 'debug_toolbar.tests.views.execute_sql'),
)