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 d177aef commit 92d4cbbCopy full SHA for 92d4cbb
docs/installation.rst
@@ -23,16 +23,12 @@ Quick setup
23
24
Make sure that ``'django.contrib.staticfiles'`` is `set up properly
25
<https://docs.djangoproject.com/en/stable/howto/static-files/>`_ and add
26
-``'debug_toolbar.apps.DebugToolbarConfig'`` (Django ≥ 1.7) or
27
-``'debug_toolbar'`` (Django < 1.7) to your ``INSTALLED_APPS`` setting::
+``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
28
29
INSTALLED_APPS = (
30
# ...
31
'django.contrib.staticfiles',
32
33
- # If you're using Django 1.7.x or later
34
- 'debug_toolbar.apps.DebugToolbarConfig',
35
- # If you're using Django 1.6.x or earlier
36
'debug_toolbar',
37
)
38
0 commit comments