{# Template variables: TODO: update agreement_workflows - list of workflow executions #}

Workflow Executions

{% block head_cells %} {% block head_cell_workflow_execution %}{% endblock %} {% block head_cell_started %}{% endblock %} {% block head_cell_name %}{% endblock %} {% block head_cell_actions %}{% endblock %} {% endblock head_cells %} {% for execution in agreement_workflows %} {% block execution_cells scoped %} {% block execution_cell_execution %} {% endblock %} {% block execution_cell_start %} {% endblock %} {% block execution_cell_name %} {% endblock %} {% block execution_cell_actions %} {% endblock %} {% endblock %} {% endfor %}
{{ _('Workflow Id') }}{{ _('Start Date') }}{{ _('Name') }}{{ _('Actions') }}
{{ execution.id }} {{ execution.created }} {{ execution.workflow_name }}
{% link_for _('View Status'), named_route="ids_actions.service_access", workflowname=execution.workflow_name, proxypath="/status", service_access_url=service_artifact["_links"]["data"]["href"], class_="btn btn-outline-info" %} {% link_for _('View Logs'), named_route="ids_actions.service_access", workflowname=execution.workflow_name, proxypath="/logs", service_access_url=service_artifact["_links"]["data"]["href"], class_="btn btn-outline-warning" %} {% link_for _('Get Output'), named_route="ids_actions.service_access", workflowname=execution.workflow_name, proxypath="/output", service_access_url=service_artifact["_links"]["data"]["href"], class_="btn btn-outline-primary" %}