├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── coverage.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .tx └── config ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.rst ├── SECURITY.md ├── debug_toolbar ├── __init__.py ├── _compat.py ├── _stubs.py ├── apps.py ├── decorators.py ├── forms.py ├── locale │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── debugsqlshell.py ├── middleware.py ├── panels │ ├── __init__.py │ ├── alerts.py │ ├── cache.py │ ├── headers.py │ ├── history │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── panel.py │ │ └── views.py │ ├── profiling.py │ ├── redirects.py │ ├── request.py │ ├── settings.py │ ├── signals.py │ ├── sql │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── panel.py │ │ ├── tracking.py │ │ ├── utils.py │ │ └── views.py │ ├── staticfiles.py │ ├── templates │ │ ├── __init__.py │ │ ├── jinja2.py │ │ ├── panel.py │ │ └── views.py │ ├── timer.py │ └── versions.py ├── settings.py ├── static │ └── debug_toolbar │ │ ├── css │ │ ├── print.css │ │ └── toolbar.css │ │ └── js │ │ ├── history.js │ │ ├── redirect.js │ │ ├── timer.js │ │ ├── toolbar.js │ │ └── utils.js ├── templates │ └── debug_toolbar │ │ ├── base.html │ │ ├── includes │ │ ├── panel_button.html │ │ ├── panel_content.html │ │ └── theme_selector.html │ │ ├── panels │ │ ├── alerts.html │ │ ├── cache.html │ │ ├── headers.html │ │ ├── history.html │ │ ├── history_tr.html │ │ ├── profiling.html │ │ ├── request.html │ │ ├── request_variables.html │ │ ├── settings.html │ │ ├── signals.html │ │ ├── sql.html │ │ ├── sql_explain.html │ │ ├── sql_profile.html │ │ ├── sql_select.html │ │ ├── staticfiles.html │ │ ├── template_source.html │ │ ├── templates.html │ │ ├── timer.html │ │ └── versions.html │ │ └── redirect.html ├── templatetags │ └── __init__.py ├── toolbar.py ├── urls.py ├── utils.py └── views.py ├── docs ├── Makefile ├── architecture.rst ├── changes.rst ├── checks.rst ├── commands.rst ├── conf.py ├── configuration.rst ├── contributing.rst ├── index.rst ├── installation.rst ├── make.bat ├── panels.rst ├── spelling_wordlist.txt └── tips.rst ├── eslint.config.js ├── example ├── README.rst ├── __init__.py ├── asgi.py ├── django-debug-toolbar.png ├── example.db ├── manage.py ├── screenshot.py ├── settings.py ├── static │ └── test.css ├── templates │ ├── async_db.html │ ├── bad_form.html │ ├── htmx │ │ └── boost.html │ ├── index.html │ ├── jinja2 │ │ └── index.jinja │ ├── jquery │ │ └── index.html │ ├── mootools │ │ └── index.html │ ├── prototype │ │ └── index.html │ └── turbo │ │ └── index.html ├── test_views.py ├── urls.py ├── views.py └── wsgi.py ├── pyproject.toml ├── requirements_dev.txt ├── setup.py ├── tests ├── __init__.py ├── additional_static │ └── base.css ├── base.py ├── commands │ ├── __init__.py │ └── test_debugsqlshell.py ├── context_processors.py ├── forms.py ├── loaders.py ├── middleware.py ├── models.py ├── panels │ ├── __init__.py │ ├── test_alerts.py │ ├── test_async_panel_compatibility.py │ ├── test_cache.py │ ├── test_custom.py │ ├── test_history.py │ ├── test_profiling.py │ ├── test_redirects.py │ ├── test_request.py │ ├── test_settings.py │ ├── test_sql.py │ ├── test_staticfiles.py │ ├── test_template.py │ └── test_versions.py ├── settings.py ├── sync.py ├── templates │ ├── ajax │ │ └── ajax.html │ ├── base.html │ ├── basic.html │ ├── jinja2 │ │ ├── base.html │ │ └── basic.jinja │ ├── registration │ │ └── login.html │ ├── sql │ │ ├── flat.html │ │ ├── included.html │ │ └── nested.html │ └── staticfiles │ │ ├── async_static.html │ │ └── path.html ├── test_checks.py ├── test_csp_rendering.py ├── test_decorators.py ├── test_forms.py ├── test_integration.py ├── test_integration_async.py ├── test_login_not_required.py ├── test_middleware_compatibility.py ├── test_toolbar.py ├── test_utils.py ├── urls.py ├── urls_invalid.py ├── urls_use_package_urls.py └── views.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/.tx/config -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/SECURITY.md -------------------------------------------------------------------------------- /debug_toolbar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/__init__.py -------------------------------------------------------------------------------- /debug_toolbar/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/_compat.py -------------------------------------------------------------------------------- /debug_toolbar/_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/_stubs.py -------------------------------------------------------------------------------- /debug_toolbar/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/apps.py -------------------------------------------------------------------------------- /debug_toolbar/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/decorators.py -------------------------------------------------------------------------------- /debug_toolbar/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/forms.py -------------------------------------------------------------------------------- /debug_toolbar/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/sv_SE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/sv_SE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/sv_SE/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/sv_SE/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /debug_toolbar/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /debug_toolbar/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/management/commands/debugsqlshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/management/commands/debugsqlshell.py -------------------------------------------------------------------------------- /debug_toolbar/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/middleware.py -------------------------------------------------------------------------------- /debug_toolbar/panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/__init__.py -------------------------------------------------------------------------------- /debug_toolbar/panels/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/alerts.py -------------------------------------------------------------------------------- /debug_toolbar/panels/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/cache.py -------------------------------------------------------------------------------- /debug_toolbar/panels/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/headers.py -------------------------------------------------------------------------------- /debug_toolbar/panels/history/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/history/__init__.py -------------------------------------------------------------------------------- /debug_toolbar/panels/history/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/history/forms.py -------------------------------------------------------------------------------- /debug_toolbar/panels/history/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/history/panel.py -------------------------------------------------------------------------------- /debug_toolbar/panels/history/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/history/views.py -------------------------------------------------------------------------------- /debug_toolbar/panels/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/profiling.py -------------------------------------------------------------------------------- /debug_toolbar/panels/redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/redirects.py -------------------------------------------------------------------------------- /debug_toolbar/panels/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/request.py -------------------------------------------------------------------------------- /debug_toolbar/panels/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/settings.py -------------------------------------------------------------------------------- /debug_toolbar/panels/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/signals.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/__init__.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/forms.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/panel.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/tracking.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/utils.py -------------------------------------------------------------------------------- /debug_toolbar/panels/sql/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/sql/views.py -------------------------------------------------------------------------------- /debug_toolbar/panels/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/staticfiles.py -------------------------------------------------------------------------------- /debug_toolbar/panels/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/templates/__init__.py -------------------------------------------------------------------------------- /debug_toolbar/panels/templates/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/templates/jinja2.py -------------------------------------------------------------------------------- /debug_toolbar/panels/templates/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/templates/panel.py -------------------------------------------------------------------------------- /debug_toolbar/panels/templates/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/templates/views.py -------------------------------------------------------------------------------- /debug_toolbar/panels/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/timer.py -------------------------------------------------------------------------------- /debug_toolbar/panels/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/panels/versions.py -------------------------------------------------------------------------------- /debug_toolbar/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/settings.py -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/css/print.css: -------------------------------------------------------------------------------- 1 | #djDebug { 2 | display: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/css/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/css/toolbar.css -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/js/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/js/history.js -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/js/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/js/redirect.js -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/js/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/js/timer.js -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/js/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/js/toolbar.js -------------------------------------------------------------------------------- /debug_toolbar/static/debug_toolbar/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/static/debug_toolbar/js/utils.js -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/base.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/includes/panel_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/includes/panel_button.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/includes/panel_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/includes/panel_content.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/includes/theme_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/includes/theme_selector.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/alerts.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/cache.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/headers.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/history.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/history_tr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/history_tr.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/profiling.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/request.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/request_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/request_variables.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/settings.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/signals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/signals.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/sql.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/sql_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/sql_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/sql_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/sql_select.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/staticfiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/staticfiles.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/template_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/template_source.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/templates.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/timer.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/panels/versions.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/templates/debug_toolbar/redirect.html -------------------------------------------------------------------------------- /debug_toolbar/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/toolbar.py -------------------------------------------------------------------------------- /debug_toolbar/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/urls.py -------------------------------------------------------------------------------- /debug_toolbar/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/utils.py -------------------------------------------------------------------------------- /debug_toolbar/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/debug_toolbar/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/architecture.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/checks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/checks.rst -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/panels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/panels.rst -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/tips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/docs/tips.rst -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/eslint.config.js -------------------------------------------------------------------------------- /example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/README.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/asgi.py -------------------------------------------------------------------------------- /example/django-debug-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/django-debug-toolbar.png -------------------------------------------------------------------------------- /example/example.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/example.db -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/screenshot.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/static/test.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /example/templates/async_db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/async_db.html -------------------------------------------------------------------------------- /example/templates/bad_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/bad_form.html -------------------------------------------------------------------------------- /example/templates/htmx/boost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/htmx/boost.html -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/templates/jinja2/index.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/jinja2/index.jinja -------------------------------------------------------------------------------- /example/templates/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/jquery/index.html -------------------------------------------------------------------------------- /example/templates/mootools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/mootools/index.html -------------------------------------------------------------------------------- /example/templates/prototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/prototype/index.html -------------------------------------------------------------------------------- /example/templates/turbo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/templates/turbo/index.html -------------------------------------------------------------------------------- /example/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/test_views.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/views.py -------------------------------------------------------------------------------- /example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/example/wsgi.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/additional_static/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/test_debugsqlshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/commands/test_debugsqlshell.py -------------------------------------------------------------------------------- /tests/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/context_processors.py -------------------------------------------------------------------------------- /tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/forms.py -------------------------------------------------------------------------------- /tests/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/loaders.py -------------------------------------------------------------------------------- /tests/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/middleware.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/panels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/panels/test_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_alerts.py -------------------------------------------------------------------------------- /tests/panels/test_async_panel_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_async_panel_compatibility.py -------------------------------------------------------------------------------- /tests/panels/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_cache.py -------------------------------------------------------------------------------- /tests/panels/test_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_custom.py -------------------------------------------------------------------------------- /tests/panels/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_history.py -------------------------------------------------------------------------------- /tests/panels/test_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_profiling.py -------------------------------------------------------------------------------- /tests/panels/test_redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_redirects.py -------------------------------------------------------------------------------- /tests/panels/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_request.py -------------------------------------------------------------------------------- /tests/panels/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_settings.py -------------------------------------------------------------------------------- /tests/panels/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_sql.py -------------------------------------------------------------------------------- /tests/panels/test_staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_staticfiles.py -------------------------------------------------------------------------------- /tests/panels/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_template.py -------------------------------------------------------------------------------- /tests/panels/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/panels/test_versions.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/sync.py -------------------------------------------------------------------------------- /tests/templates/ajax/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/ajax/ajax.html -------------------------------------------------------------------------------- /tests/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/base.html -------------------------------------------------------------------------------- /tests/templates/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/basic.html -------------------------------------------------------------------------------- /tests/templates/jinja2/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/jinja2/base.html -------------------------------------------------------------------------------- /tests/templates/jinja2/basic.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/jinja2/basic.jinja -------------------------------------------------------------------------------- /tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | -------------------------------------------------------------------------------- /tests/templates/sql/flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/sql/flat.html -------------------------------------------------------------------------------- /tests/templates/sql/included.html: -------------------------------------------------------------------------------- 1 | {{ users }} 2 | -------------------------------------------------------------------------------- /tests/templates/sql/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/sql/nested.html -------------------------------------------------------------------------------- /tests/templates/staticfiles/async_static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/staticfiles/async_static.html -------------------------------------------------------------------------------- /tests/templates/staticfiles/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/templates/staticfiles/path.html -------------------------------------------------------------------------------- /tests/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_checks.py -------------------------------------------------------------------------------- /tests/test_csp_rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_csp_rendering.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_integration_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_integration_async.py -------------------------------------------------------------------------------- /tests/test_login_not_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_login_not_required.py -------------------------------------------------------------------------------- /tests/test_middleware_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_middleware_compatibility.py -------------------------------------------------------------------------------- /tests/test_toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_toolbar.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/urls_invalid.py: -------------------------------------------------------------------------------- 1 | """Invalid urls.py file for testing""" 2 | 3 | urlpatterns = [] 4 | -------------------------------------------------------------------------------- /tests/urls_use_package_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/urls_use_package_urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhudson/django-debug-toolbar/HEAD/tox.ini --------------------------------------------------------------------------------