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 5353ba6 commit 3728860Copy full SHA for 3728860
docs/installation.rst
@@ -47,9 +47,9 @@ Add the Debug Toolbar's URLs to your project's URLconf as follows::
47
48
if settings.DEBUG:
49
import debug_toolbar
50
- urlpatterns += [
+ urlpatterns = [
51
url(r'^__debug__/', include(debug_toolbar.urls)),
52
- ]
+ ] + urlpatterns
53
54
This example uses the ``__debug__`` prefix, but you can use any prefix that
55
doesn't clash with your application's URLs. Note the lack of quotes around
0 commit comments