django-debug-toolbar icon indicating copy to clipboard operation
django-debug-toolbar copied to clipboard

A configurable set of panels that display various debug information about the current request/response.

Results 130 django-debug-toolbar issues
Sort by recently updated
recently updated
newest added

The [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) and [XHR](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) are different. The example app uses `fetch` so we can't trigger the auto update functionality without a change. Realistically we should instrument both.

Beginner friendly

In order to support Channels' non-django request possibilities, we need to start making the toolbar more flexible.In order to support Django Channels out of the box we need to support...

by upgrading django to version 4.0.2 view function on django-debug-toolbar doesn't display properly. The expected string should be the class name: DashboardView not "backend_base.views.view". "backend_base" is app name. The class...

Got that error in the Chrome console. Django 3.2.13 debug_toolbar 3.4.0

Is there a types stub for the toolbar? I'm getting mypy warnings, and I cannot seem to find the stubs online.

Some time ago I updated to DjDT 3.4.0 from the previous version and instantly ran into issues on certain pages of the Django project (but not others). The page loading...

For some reason I can't figure out, my history panel is always empty. ![image](https://user-images.githubusercontent.com/2989985/122625010-3b6a4900-d0a3-11eb-8827-86d72e498498.png) All other panels work just fine. ```python MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", "debug_toolbar.middleware.DebugToolbarMiddleware", "django.middleware.locale.LocaleMiddleware", "django.middleware.common.CommonMiddleware", "django.middleware.csrf.CsrfViewMiddleware",...

Support request

When using `from django.core.cache import caches` in a module, that is loaded only before a view is processed, this `caches.caches` instance will not be monkey-patched via `CacheHandlerPatch`. One possible workaround...

Bug

Hello, using Django Debug Toolbar 3.2.4 with Django 4.0.3, I get the following stack trace: ``` Traceback (most recent call last): File "/home/carsten/.virtualenvs/Lori/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner response = get_response(request)...

toolbar will show when you login admin , however it will not show when you use Render or HttpResponse function in view function . like ` class Vue3API(APIView): def get(self,...