aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/urls.py
blob: c8ec7cd2f30d03e37a0482e16c022c24c55e3fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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.conf import settings

urlpatterns = patterns('', 
    url('^__debug__/m/(.*)$', 'debug_toolbar.views.debug_media', name='debug_toolbar_media'),
)