{% trans "Run Command" %}
{% if result %}{% trans "Standard output" %}
{{ result.stdout|default:_('No output') }}
{% trans "Standard error" %}
{{ result.stderr|default:_('No errors reported') }}
{% trans "Traceback" %}
{{ result.traceback }}
{% trans "Command History" %}
{% if page_obj.object_list %}| {% trans "Command" %} | {% trans "Ran" %} | {% trans "Runtime" %} | {% trans "Status" %} | {% trans "View" %} |
|---|---|---|---|---|
| {{ entry.resolved_command }} | {{ entry.created_at|date:"SHORT_DATETIME_FORMAT" }} | {{ entry.runtime }} | {% if entry.success %}✔{% else %}✖{% endif %} {% if entry.success %}{% trans "Success" %}{% else %}{% trans "Failed" %}{% endif %} | {% trans "View" %} |
{% if page_obj.has_previous %}
{% trans "Previous" %}
{% endif %}
{% blocktrans %}Page {{ page_obj.number }} of {{ paginator.num_pages }}{% endblocktrans %}
{% if page_obj.has_next %}
{% trans "Next" %}
{% endif %}
{% else %}
{% trans "No commands have been run yet." %}
{% endif %}