{% extends "base.html" %} {% block title %}{{ flow_name }} — Repster{% endblock %} {% block content %} {% if not flow_spec %}

Flow not found in the current directory.

{% else %}
Schedule{{ flow_spec.schedule or '—' }}
Next Run{{ flow_spec.schedule | next_run }}
Entrypoint{{ flow_spec.entrypoint }}
{% endif %}

Runs

{% if runs %}
{% for run in runs %} {% endfor %}
Run ID Status Started Rows
{{ run.run_id[:12] }} {{ run.status }} {{ run.started_at | fmtts }} {{ run.rows_loaded or '—' }}
{% else %}

No runs yet for this flow.

{% endif %} {% endblock %}