Skip to content

Fix settings docs #1534

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 24, 2021
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