{% extends "base.html" %} {% block title %}runs ยท watchmen{% endblock %} {% block content %}
| # | 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 "" }} |