{% extends "workflow_kit/dashboard/base.html" %} {% load i18n %} {% block title %}{% trans "Executions" %} · {% trans "Workflow Dashboard" %}{% endblock %} {% block content %}

{% trans "Workflow Executions" %}

{% if not executions %}

{% trans "No executions match." %}

{% trans "Adjust the filters or clear the search to see more." %}

{% else %}
{% for execution in executions %} {% endfor %}
{% trans "ID" %} {% trans "Workflow" %} {% trans "Version" %} {% trans "State" %} {% trans "Started" %} {% trans "Status" %}
#{{ execution.pk }} {{ execution.workflow_name }} {{ execution.workflow_version.version|default:"—" }} {{ execution.current_state }} {{ execution.started_at|date:"Y-m-d H:i" }} {% if execution.completed_at %} {% trans "Completed" %} {% else %} {% trans "Active" %} {% endif %}
{% endif %} {% endblock %}