{% extends "base.html" %} {% block title %}Run {{ run.id }} · Server Maintenance{% endblock %} {% block content %}

← Tasks

{{ run.target_kind|title }} run #{{ run.id }}

Target
{{ run.target_path }}
Status
{{ run.status }}
Started
{{ run.started_at|timestamp }}
Finished
{{ run.finished_at|timestamp }}
Exit code
{{ run.exit_code if run.exit_code is not none else "—" }}
{% if run.message %}
Message
{{ run.message }}
{% endif %}
{% if run.status in ("queued", "running") %}
{% endif %} {% if execution_task %}
{% endif %} {% if children %}

Group tasks

{% endif %}

Output

{{ output }}
{% endblock %}