{% extends "admin/base_site.html" %} {% load i18n static %} {% block title %}{{ title }} | {{ site_title }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ title }}

{% trans "Execute Django management commands through the web interface. Only superusers can access this feature." %}

{% if not commands_by_app %}

{% trans "No management commands found." %}

{% else %} {% for app_label, commands in commands_by_app.items %}

{{ app_label }}

{% for command in commands %} {% endfor %}
{% trans "Command" %} {% trans "Description" %}
{{ command.name }} {{ command.help_text|default:"—"|truncatewords:20 }}
{% endfor %} {% endif %} {% endblock %}