{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block title %}{% translate 'Commands' %}{% endblock %} {% block content %}

{% translate 'Commands' %}

{% for command in commands %}

{{ command.name }}

{% if command.help %}

{{ command.help }}

{% endif %} {% if command.args %}

{% translate 'Arguments' %}

{% endif %} {% if command.options %}

{% translate 'Options' %}

{% endif %}
{% endfor %}
{% endblock %}