{% extends "layout_fluid.html" %} {% load i18n %} {% load l10n %} {% block content %} {% include "main/_tasks_pager.html" %} {% for item in objects %}

Task {{ item.taskuuid }}

{% trans "File UUID" %}
{{ item.fileuuid|default:_("Not applicable") }}
{% 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 %}

{{ item.arguments }}
{% if item.stdout|length > 0 or item.stderror|length > 0 %}

{% trans "Standard streams" %}

{% endif %} {% if item.stdout|length > 0 %}

{% trans "Standard output (stdout)" %}

{{ item.stdout }}
{% endif %} {% if item.stderror|length > 0 %}

{% trans "Errors and diagnostics (stderr)" %}

{{ item.stderror }}
{% endif %}
{% endfor %} {% include "main/_tasks_pager.html" %} {% endblock %} {% block extra_js %} {% endblock %}