We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b68da commit c2658d1Copy full SHA for c2658d1
docs/installation.rst
@@ -77,9 +77,9 @@ Add the Debug Toolbar's URLs to your project's URLconf as follows::
77
78
if settings.DEBUG:
79
import debug_toolbar
80
- urlpatterns += patterns('',
+ urlpatterns += [
81
url(r'^__debug__/', include(debug_toolbar.urls)),
82
- )
+ ]
83
84
This example uses the ``__debug__`` prefix, but you can use any prefix that
85
doesn't clash with your application's URLs. Note the lack of quotes around
0 commit comments