{% extends "mirrorwall/base.html" %} {% from "mirrorwall/components.html" import badge, empty_state, kv_list, table %} {% block title %}Benchmarks — LoadCoach{% endblock %} {% block content %}
{{ overview.note }}
{{ kv_list([ {"label": "Evidence source", "value": overview.status}, {"label": "Records", "value": overview.rows ~ " total · " ~ overview.bound ~ " bound · " ~ overview.unmatched ~ " unmatched · " ~ overview.ambiguous ~ " ambiguous · " ~ overview.stale ~ " stale"}, {"label": "Last import", "value": overview.imported_at or "never"}, {"label": "Bundle produced at", "value": overview.generated_at or "—"}, {"label": "Bundle schema", "value": overview.bundle_schema_version or "—"}, {"label": "Confidence policy", "value": overview.policy_version or "—"}, {"label": "Capability vocabulary", "value": overview.vocabulary_version or "—"}, {"label": "Measured between", "value": (overview.oldest_measured_at or "—") ~ " and " ~ (overview.newest_measured_at or "—")}, ]) }}