{% extends "base.html" %} {% block title %}runs ยท watchmen{% endblock %} {% block content %}

Run history

{% if runs %}
{% for r in runs %} {% endfor %}
# Started Ended Project Kind Status Cost Notes
{{ r.id }} {{ r.started_at[:19] }} {{ r.ended_at[:19] if r.ended_at else "running" }} {{ r.project_key }} {{ r.kind }} {% if r.status == 'ok' %}โœ“ ok {% elif r.status == 'running' %}โ— running {% else %}โœ— {{ r.status }}{% endif %} {{ "$%.2f"|format(r.cost_estimate_usd) if r.cost_estimate_usd else "" }} {{ r.notes or "" }}
{% else %}
No runs recorded yet.
{% endif %} {% endblock %}