gitextract_yarv0zo1/ ├── .editorconfig ├── .git-blame-ignore-revs ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── coverage.yml │ ├── release.yml │ ├── test.yml │ └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .tx/ │ └── config ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.rst ├── SECURITY.md ├── biome.json ├── 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 │ │ ├── lt/ │ │ │ └── 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 │ │ ├── tr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── uk/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── uz/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── zh_CN/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── debugsqlshell.py │ ├── middleware.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── panels/ │ │ ├── __init__.py │ │ ├── alerts.py │ │ ├── cache.py │ │ ├── community.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 │ ├── py.typed │ ├── sanitize.py │ ├── settings.py │ ├── static/ │ │ └── debug_toolbar/ │ │ ├── css/ │ │ │ ├── print.css │ │ │ └── toolbar.css │ │ └── js/ │ │ ├── history.js │ │ ├── redirect.js │ │ ├── timer.js │ │ ├── toolbar.js │ │ └── utils.js │ ├── store.py │ ├── templates/ │ │ └── debug_toolbar/ │ │ ├── base.html │ │ ├── includes/ │ │ │ ├── panel_button.html │ │ │ ├── panel_content.html │ │ │ └── theme_selector.html │ │ ├── panels/ │ │ │ ├── alerts.html │ │ │ ├── cache.html │ │ │ ├── community.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 │ ├── resources.rst │ ├── spelling_wordlist.txt │ └── tips.rst ├── example/ │ ├── README.rst │ ├── __init__.py │ ├── asgi.py │ ├── async_/ │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── views.py │ ├── manage.py │ ├── screenshot.py │ ├── settings.py │ ├── static/ │ │ └── test.css │ ├── templates/ │ │ ├── async_db.html │ │ ├── bad_form.html │ │ ├── cache.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 ├── 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_apps.py │ ├── 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.py │ ├── test_models.py │ ├── test_sanitize.py │ ├── test_settings.py │ ├── test_store.py │ ├── test_toolbar.py │ ├── test_utils.py │ ├── urls.py │ ├── urls_invalid.py │ ├── urls_use_package_urls.py │ └── views.py └── tox.ini