{% extends "base.html" %} {% block title %}Task #{{ task.id }} — Manage{% endblock %} {% block content %}

{{ task.title }}

Task #{{ task.id }} · {{ task.agent.hostname }}
{{ task.status }}
Type
{{ task.type }}
Created by
{{ task.created_by }}
Created
{{ created }}
Dispatched
{{ dispatched or "—" }}
Completed
{{ completed or "—" }}
Exit code
{{ task.exit_code if task.exit_code is not none else "—" }}
{% if task.batch_id %}
Batch
{{ task.batch_id[:8] }}
{% endif %}

Payload

{{ payload_json }}

stdout

{{ task.stdout or "(empty)" }}

stderr

{{ task.stderr or "(empty)" }}
{% endblock %}