diff options
| author | Aymeric Augustin | 2013-11-11 11:31:21 -0800 |
|---|---|---|
| committer | Aymeric Augustin | 2013-11-11 11:31:21 -0800 |
| commit | 84c336830a3b01a94e9d0e2661ccad1de4545150 (patch) | |
| tree | 1cc7893c4aadde657c92ac8744a339448b93d74a /tests/urls.py | |
| parent | c71624039d3d05067a27d6f983b552f283ffb893 (diff) | |
| parent | 334eccd578c4abcfe1e0d11a1227b37bf6553d65 (diff) | |
| download | django-debug-toolbar-84c336830a3b01a94e9d0e2661ccad1de4545150.tar.bz2 | |
Merge pull request #456 from aaugustin/automagic-setup
Simplify installation and provide more control.
Diffstat (limited to 'tests/urls.py')
| -rw-r--r-- | tests/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/urls.py b/tests/urls.py index 977084b..d4417a1 100644 --- a/tests/urls.py +++ b/tests/urls.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals -from django.conf.urls import patterns, url +from django.conf.urls import include, patterns, url from django.contrib import admin from .models import NonAsciiRepr @@ -18,4 +18,5 @@ urlpatterns = patterns('tests.views', # noqa url(r'^non_ascii_request/$', 'regular_view', {'title': NonAsciiRepr()}), url(r'^new_user/$', 'new_user'), url(r'^execute_sql/$', 'execute_sql'), + url(r'^__debug__/', include('debug_toolbar.urls', namespace='djdt', app_name='djdt')), ) |
