{% extends 'devtools/base.html' %} {% block title %}Django DevTools - Modern Development Dashboard{% endblock %} {% block content %}

Django DevTools

Modern development tools for exploring, debugging, and managing your Django applications.

Secure Development Mode

Applications

{{ total_apps }}

Models

{{ total_models }}

Security

Active

Mode

DEBUG

Quick Actions

Powerful tools to explore and debug your Django application

Python/SQL Console

Execute Python code or SQL queries in real-time with syntax highlighting and error handling.

Data Explorer

Browse and explore your database tables with pagination, filtering, and detailed views.

Database Schema

Visualize and explore your database structure, relationships, and constraints.

Django Models

Overview of all available models in your Django applications

{% if models_data %}
{% for app in models_data %}

{{ app.app_verbose_name }}

{{ app.models|length }} model{{ app.models|length|pluralize }}
{% for model in app.models %}

{{ model.verbose_name }}

Table: {{ model.table_name }}

{{ model.count }} record{{ model.count|pluralize }} {{ model.fields|length }} field{{ model.fields|length|pluralize }}
{% endfor %}
{% endfor %}
{% else %}

No models found

No Django models were found in your applications.

{% endif %}

Security Notice

These development tools are only available in DEBUG mode and require superuser privileges. They should never be enabled in production environments.

{% endblock %}