Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions debug_toolbar/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@

from django.conf import settings

# Always import this module as follows:
# from debug_toolbar import settings [as dt_settings]

# Don't import directly CONFIG or PANELs, or you will miss changes performed
# with override_settings in tests.


CONFIG_DEFAULTS = {
# Toolbar options
"DISABLE_PANELS": {
Expand Down
9 changes: 8 additions & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,14 @@ Toolbar options

* ``DISABLE_PANELS``

Default: ``{'debug_toolbar.panels.redirects.RedirectsPanel'}``
Default:

.. code-block:: python

{
"debug_toolbar.panels.profiling.ProfilingPanel",
"debug_toolbar.panels.redirects.RedirectsPanel",
}

This setting is a set of the full Python paths to each panel that you
want disabled (but still displayed) by default.
Expand Down