diff options
| author | Rob Hudson | 2008-10-07 12:23:18 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-10-07 12:35:56 -0700 | 
| commit | 822988142666fccb216a17ef3abbee7b6bbcf76b (patch) | |
| tree | 5fdc354bcbe19b2e70f8733dc79e902d88f49993 /debug_toolbar/urls.py | |
| parent | a3492e14765e3f898efc26913a8e8c4445a837b4 (diff) | |
| download | django-debug-toolbar-822988142666fccb216a17ef3abbee7b6bbcf76b.tar.bz2 | |
Clicking on a template file now will fetch and show the source of the template.
Thanks to Adam Gomaa for the patch.
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 53a426b..77d1a80 100644 --- a/debug_toolbar/urls.py +++ b/debug_toolbar/urls.py @@ -12,4 +12,5 @@ urlpatterns = patterns('',      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'),      url(r'^__debug__/sql_profile/$', 'debug_toolbar.views.sql_profile', name='sql_profile'), +    url(r'^__debug__/template_source/$', 'debug_toolbar.views.template_source', name='template_source'),  ) | 
