{% extends "base.html" %} {% block title %}DBSprout Dashboard — Home{% endblock %} {% block content %}

Run history

{% if runs %}
{% for run in runs %} {% endfor %}
Started Engine Tables Rows Seed Duration (ms)
{{ run.started_at }} {{ run.engine }} {{ "{:,}".format(run.total_tables) }} {{ "{:,}".format(run.total_rows) }} {{ run.seed if run.seed is not none else "—" }} {{ run.duration_ms if run.duration_ms is not none else "—" }}
{% else %}
No runs yet. Run dbsprout generate to populate the dashboard.
{% endif %} {% endblock %}