{% extends "admin/base_site.html" %} {% load i18n static %} {% block title %}{{ title }} | {{ site_title }}{% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}{% 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 %}| {% trans "Command" %} | {% trans "Description" %} |
|---|---|
| {{ command.name }} | {{ command.help_text|default:"—"|truncatewords:20 }} |