{% extends "base.html" %} {% block content %}

Start run

Available tasks

{% for task in tasks %} {{ task.id }} {% endfor %}

Runs

{% for run in runs %} {% set activity = run_activity[run.id] %} {% endfor %}
Run id Status Roots Activity Prefect
{{ run.id }} {{ run.status.value }} {{ run.roots | join(", ") }}
running={{ activity.running_nodes | length }}
{% if activity.last_progress_at %}{{ activity.last_progress_at }}{% else %}-{% endif %}
{% if activity.last_event_summary %}{{ activity.last_event_summary }}{% else %}-{% endif %}
{% if run.prefect_flow_run_id %}
{{ run.prefect_flow_run_id }}
{% if prefect_ui_url %} Open UI {% endif %} {% else %} - {% endif %}
{% endblock %}