aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installation.rst
diff options
context:
space:
mode:
authorAymeric Augustin2014-01-08 21:32:02 +0100
committerAymeric Augustin2014-01-08 21:39:05 +0100
commit37fadc0a0af4db7a0d3dd750e6a43efe4aed5ad9 (patch)
treec478611cc14ea13ba1b1ea193e95346a12a110f7 /docs/installation.rst
parent72c101794f273435fdbeeb6da82ec3fadf99991c (diff)
downloaddjango-debug-toolbar-37fadc0a0af4db7a0d3dd750e6a43efe4aed5ad9.tar.bz2
Add an AppConfig for Django 1.7.
Diffstat (limited to 'docs/installation.rst')
-rw-r--r--docs/installation.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index f761e91..70ca46e 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -23,12 +23,16 @@ Quick setup
Make sure that ``'django.contrib.staticfiles'`` is `set up properly
<https://docs.djangoproject.com/en/stable/howto/static-files/>`_ and add
-``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
+``'debug_toolbar.apps.DebugToolbarConfig'`` (Django ≥ 1.7) or
+``'debug_toolbar'`` (Django < 1.7) to your ``INSTALLED_APPS`` setting::
INSTALLED_APPS = (
# ...
'django.contrib.staticfiles',
# ...
+ # If you're using Django 1.7.x or later
+ 'debug_toolbar.apps.DebugToolbarConfig',
+ # If you're using Django 1.6.x or earlier
'debug_toolbar',
)