{% extends "base.html" %} {% block title %}Runs — Repster{% endblock %} {% block content %} {% if runs %}
{% for run in runs %} {% endfor %}
Run ID Project Flow Status Started Rows
{{ run.run_id[:12] }} {{ run.project }} {{ run.flow }} {{ run.status }} {{ run.started_at | fmtts }} {{ run.rows_loaded or '—' }}
{% else %}

No runs yet.

{% endif %} {% endblock %}