django-commons/django-debug-toolbar

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

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 25 minutes ago
Added to GitGenius on September 7th, 2026
Created on August 28th, 2008
Open Issues & Pull Requests: 82 (+0)
GitHub issues: Enabled
Number of forks: 1,104
Total Stargazers: 8,378 (+0)
Total Subscribers: 103 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 47
New in 7 days: 2
Closed in 7 days: 1
Avg open age: 1,112 days
Stale 30+ days: 36
Stale 90+ days: 21

Recent activity

Opened in 7 days: 2
Closed in 7 days: 1
Comments in 7 days: 4
Events in 7 days: 12

Top labels

  • Djangonaut Space :rocket: (23)
  • Beginner friendly (20)
  • Bug (19)
  • Documentation (17)
  • Feature (10)
  • Async 🦄 (9)
  • Improvement (7)
  • Support request (7)

Detailed Description

Django Debug Toolbar is a configurable debugging panel system for Django applications that displays detailed information about the current request and response cycle.

The tool addresses the need to inspect what happens during request processing without leaving the browser. It works by injecting a collapsible toolbar into rendered pages that contains multiple panels, each showing specific debug information. When a panel is clicked, it expands to reveal detailed content about that aspect of the request, allowing developers to diagnose performance issues, database queries, template rendering, and other runtime behavior.

Django Debug Toolbar suits development environments where you need visibility into application behavior. It is most valuable for identifying slow database queries, understanding template rendering, and inspecting request headers and session data. The tool is not intended for production use. Community members have contributed additional third-party panels that extend the toolbar's capabilities beyond the built-in offerings.

The project maintains active development with comprehensive test coverage. The toolbar includes experimental support for Django's asynchronous views, though concurrent request handling remains a known limitation. Documentation is maintained separately and covers installation and configuration in detail.