Show HN: Django Control Room – All Your Tools Inside the Django Admin

Published: (February 25, 2026 at 09:31 AM EST)
1 min read

Source: Hacker News

Operational Panels

  • Redis inspection
  • Cache visibility
  • Celery task introspection
  • URL discovery and testing

All of these tools are built directly inside the Django admin.

Why Use the Django Admin?

Instead of jumping between separate tools such as Flower, redis-cli, Swagger, or other external services, the Django admin provides a single place where you’re already working. It already offers:

  • Authentication
  • Permissions
  • A familiar interface

By leveraging the admin, it can also serve as an operational layer for your application.

Extensibility

Each panel is a small Django app with a simple interface, making it easy to:

  1. Build your own panels.
  2. Plug them into the admin seamlessly.

Future panels under development include signals, errors, and more.

Discussion

I’m curious how others think about this approach. Does it make sense to consolidate this kind of tooling inside the admin, or do you prefer keeping it separate?

Comments: Hacker News discussion (12 points, 4 comments)

0 views
Back to Blog

Related posts

Read more »