{% extends "base.html" %} {% block content %}
All workflow runs
{% if workflow_runs %}
{{ workflow_runs|length }} Total Runs
{% for run in workflow_runs %} {% endfor %}
Workflow Type Invocation ID Parent Workflow Actions
{{ run.workflow_type }} {{ run.workflow_id }} {% if run.parent_workflow_id %}
{% if run.parent_workflow %} {{ run.parent_workflow.workflow_type }} {% else %} Parent workflow {% endif %} {{ run.parent_workflow_id }}
{% else %} - {% endif %}
View Invocations {% if run.parent_workflow %} Parent Workflow Details {% endif %}
{% else %}
No workflow runs found

No workflow executions have been registered yet. Workflow runs will appear here after workflows are executed at least once.

{% endif %}
{% endblock %}