{% load unfold %}

{{ title|default:"Management Commands" }}

Execute Django management commands directly from the dashboard

Total: {{ data.commands|length }} commands
search
{% if data.categories %}
{% for category, category_commands in data.categories.items %} {% if category_commands %}

{% if category == 'django_cfg' %}settings {% elif category == 'django_core' %}apps {% elif category == 'third_party' %}extension {% else %}folder{% endif %}
{{ category|title }} Commands {{ category_commands|length }}

expand_more
{% endif %} {% endfor %}
{% else %}

list All Commands

{% for cmd in data.commands %} {% endfor %}
{% endif %}