{% extends "base.html" %} {% block title %}Dashboard - MoralStack{% endblock %} {% block content %}
Reset
Showing {{ runs|length }} of {{ total_runs }} runs · page {{ page }} / {{ total_pages }}
{% if runs %}
{% for r in runs %} {% endfor %}
Run ID Type Status Started Ended Actions
{{ r.run_id[:12] }} {% if r.run_type == 'benchmark' %} BENCHMARK {% elif r.run_type == 'single' %} SINGLE {% else %} {{ r.run_type or '—' }} {% endif %} {% if r.status == 'completed' %} {{ r.status }} {% elif r.status == 'running' %} {{ r.status }} {% elif r.status == 'failed' %} {{ r.status }} {% else %} {{ r.status or '—' }} {% endif %} {{ r.started_at | fmtdate }} {{ r.ended_at | fmtdate }} View Export
{% if page > 1 %} Previous {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next {% endif %}
{% else %}

No runs found.

Run a benchmark first, then visit this page.

{% endif %} {% endblock %}