{% extends "_base.html" %} {% block title %}Run history — yt-shorts-trends{% endblock %} {% block content %}
Last 50 runs, newest first.
{% if not rows %}No runs yet. Submit one from Run now or Channel analysis.
{% else %}| Run | State | Mode | Platform | Started | Last seen | Exit | |
|---|---|---|---|---|---|---|---|
| {{ r.run_id }} | {{ r.state }} | {{ r.mode }} | {% set _plat = r.platform %}{% include '_partials/platform_badge.html' %} | {{ r.started_at }} | {{ r.last_heartbeat or '—' }} | {{ r.exit_code if r.exit_code is not none else '—' }} | {% if r.state in ['pending','running'] %} {% endif %} |