{% extends "base.html" %} {% block title %}Fleet · HivePlane{% endblock %} {% block content %}
| Workload | Owner | Team | Certification | Runs | Failures | Last run | Burn |
|---|---|---|---|---|---|---|---|
| {{ workload.name }} | {{ workload.owner }} | {{ workload.team or "—" }} | {{ workload.certification_status }} | {% for state, count in workload.state_counts.items() %}{{ state }}:{{ count }}{% if not loop.last %} · {% endif %}{% endfor %} | {{ workload.recent_failures }} | {{ workload.last_run_at or "—" }} | ${{ "%.2f"|format(workload.budget_burn_usd) }} |
No workloads registered yet.
{% endif %}| Run | Workload | State | Updated |
|---|---|---|---|
| {{ run.id }} | {{ run.workload_id }} | {{ run.state }} | {{ run.updated_at }} |
No runs recorded yet.
{% endif %} {% endblock %}