- {% trans "File UUID" %}
- {{ item.fileuuid|default:_('Unknown') }}
- {% trans "File name" %}
- {{ item.filename }}
- {% trans "Client" %}
- {{ item.client }}
- {% trans "Exit code" %}
-
{% if item.exitcode == 0 %}
{{ item.exitcode }}
{% else %}
{{ item.exitcode }}
{% endif %}
- {% trans "Start time" %}
- {{ item.starttime.isoformat }}
- {% trans "End time" %}
- {{ item.endtime.isoformat }}
- {% trans "Created time" %}
- {{ item.createdtime.isoformat }}
- {% trans "Duration" %}
- {% blocktrans with duration=item.duration %}{{ duration }} seconds(s){% endblocktrans %}
{% blocktrans with module=item.execution %}
Module {{ module }}
{% endblocktrans %}
{% if item.stdout|length > 0 or item.stderror|length > 0 %}
{% trans "Standard streams" %}
{% endif %}
{% if item.stdout|length > 0 %}
{% trans "Standard output (stdout)" %}
{% endif %}
{% if item.stderror|length > 0 %}
{% trans "Standard error (stderr)" %}
{% endif %}