{% extends "layout_fluid.html" %} {% load l10n %} {% block content %} {% include "main/_tasks_pager.html" %} {% for item in objects %} {% if item.stdout %} {% endif %} {% if item.stderror %} {% endif %} {% endfor %}
Task UUID: {{ item.taskuuid }}
File UUID: {{ item.fileuuid }}
File name: {{ item.filename }}
Client: {{ item.client }}
  {{ item.exec_field }} (exit code: {{ item.exitcode }})
Start time: {{ item.starttime.isoformat }}
End time: {{ item.endtime.isoformat }}
Created time: {{ item.createdtime.isoformat }}
Duration: {{ item.duration }} second(s)
Command: {{ item.execution }} {{ item.arguments }}

STDOUT

{{ item.stdout }}

STDERR

{{ item.stderror }}
{% include "main/_tasks_pager.html" %} {% endblock %}