{% extends "base.html" %} {% block content %}
Workflows
{% if workflows %}
{% for workflow in workflows %} {% endfor %}
Workflow Task ID Total Runs Latest Run Actions
{{ workflow.workflow_task_id }} {{ workflow.run_count }} {% if workflow.latest_run %} {{ workflow.latest_run.workflow_id[:8] }}... {% else %} No runs {% endif %} View Details
{% else %}
No workflows found

No workflow executions have been registered yet. Workflows will appear here after they are executed at least once.

{% endif %}
{% endblock %}