{% extends "base.html" %} {% block title %}Dashboard — dvad{% endblock %} {% block content %} {% if has_config_errors %}
{% endif %} {# ── Mode Selector Cards ───────────────────────────────────────────── #}| Review ID | Project | Result | Mode | Date | Points | Groups | Escalated | Cost |
|---|---|---|---|---|---|---|---|---|
| {{ r.review_id[:20] }} | {{ r.get('project', '—') }} | {% set res = r.get('result', 'success') %} {% if res == 'success' %}Success {% elif res == 'complete' %}Success {% elif res == 'completed' %}Completed {% elif res == 'dry_run' %}Dry Run {% elif res == 'cost_exceeded' %}Cost Exceeded {% elif res == 'cost_aborted' %}Cost Aborted {% elif res == 'failed' %}Failed {% else %}{{ res }} {% endif %} | {{ r.mode }} | {{ r.timestamp|human_date }} | {{ r.total_points }} | {{ r.get('total_groups', '—') }} | {{ r.get('escalated', '—') }} | ${{ "%.4f"|format(r.total_cost) }} |
| No reviews found. | ||||||||