{% extends "base.html" %} {% block title %}DBSprout Dashboard — Run History{% endblock %} {% block content %}
{% if rows %}| Run | Started | Engine | Provider | Tables | Rows | Duration (ms) | Cost (USD) |
|---|---|---|---|---|---|---|---|
| #{{ row.id }} | {{ row.started_at }} | {{ row.engine }} | {{ row.provider }} | {{ "{:,}".format(row.total_tables) }} | {{ "{:,}".format(row.total_rows) }} | {{ row.duration_ms if row.duration_ms is not none else "—" }} | ${{ "%.4f"|format(row.cost) }} |
dbsprout generate to populate the dashboard.