{% extends "base.html" %} {% block title %}Timeline - Hermes{% endblock %} {% block content %}
Total: {{ stats.total }} | Done: {{ stats.done }} | Blocked: {{ stats.blocked }} | Running: {{ stats.running }} | Ready: {{ stats.ready }} | Failed: {{ stats.failed }}
| ID | Title | Status | Created | Duration | Outcome |
|---|---|---|---|---|---|
| {{ t.task_id }} | {{ t.title[:80] }} | {{ t.status }} | {% if t.created_at %}{{ t.created_at|int|dt }}{% endif %} | {% if t.duration_s %} {% if t.duration_s < 60 %}{{ t.duration_s }}s {% elif t.duration_s < 3600 %}{{ (t.duration_s / 60)|round(1) }}m {% else %}{{ (t.duration_s / 3600)|round(1) }}h{% endif %} {% else %}-{% endif %} | {{ t.outcome_summary[:80] }} |