{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}Job {{ job_id | truncate(length=12, end="") }}{% endblock %} {% block nav_jobs %}btn-active{% endblock %} {% block content %}
← Jobs

Job Detail

{% if job %} {# ── Meta row ── #}
ID
{{ job.id | default(value=job_id) }}
Name
{{ job.name | default(value="—") }}
Status
{% set s = job.status | default(value="unknown") %} {% if s == "Running" or s == "running" %} running {% elif s == "Completed" or s == "completed" or s == "Success" %} completed {% elif s == "Failed" or s == "failed" or s == "Error" %} failed {% elif s == "Pending" or s == "pending" %} pending {% else %} {{ s }} {% endif %}
{% if job.created_at %}
Created
{{ job.created_at }}
{% endif %} {% if job.started_at %}
Started
{{ job.started_at }}
{% endif %} {% if job.completed_at %}
Completed
{{ job.completed_at }}
{% endif %}
{# ── Error (when present) ── #} {% if job.error %}
Error
{{ job.error }}
{% endif %} {# ── Output ── #}
Output {% if job.output %} {% endif %}
{% if job.output %}
{{ job.output }}
{% else %}

No output.

{% endif %}
{% else %}
Job {{ job_id }} not found — orchestrator may be unavailable.
{% endif %} {% endblock %} {% block scripts %} {% endblock %}