{% extends "_base.html" %} {% block title %}Run history — yt-shorts-trends{% endblock %} {% block content %}

Run history

Last 50 runs, newest first.

Clear
{% if not rows %}

No runs yet. Submit one from Run now or Channel analysis.

{% else %} {% for r in rows %} {% endfor %}
RunStateModePlatform StartedLast seenExit
{{ 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 %}
{% endif %} {% endblock %}