{% extends "web/_base.html" %} {% load workflows %} {% block title %}List of {{ workspace.name }} workflows{% endblock %} {% block content %}

{{ workspace.name }} workflows

This page lets you monitor workflows started in the {{ workspace }} workspace.

Filter
{% if filter_form.errors %} {% endif %}

{{ filter_form.statuses }}

{{ filter_form.runtime_statuses }}

{{ filter_form.results }}

{{ filter_form.workflow_templates }}

{{ filter_form.started_by }}

{{ filter_form.with_failed_work_requests }} With failed work requests
{% if workflow_list %} {% for workflow in workflow_list %} {% endfor %}
ID {% include "web/_order.html" with name="id" order=order asc=asc only %} Workflow template {% include "web/_order.html" with name="workflow_template" order=order asc=asc only %} Status {% include "web/_order.html" with name="status" order=order asc=asc only %} Result {% include "web/_order.html" with name="result" order=order asc=asc only %} Started at {% include "web/_order.html" with name="started_at" order=order asc=asc only %} Completed at {% include "web/_order.html" with name="completed_at" order=order asc=asc only %} Count of work requests Last activity {% include "web/_order.html" with name="last_activity" order=order asc=asc only %} Started by {% include "web/_order.html" with name="started_by" order=order asc=asc only %}
{{ workflow.id }} {{ workflow.workflow_display_name_parameters }} {% workflow_runtime_status_small workflow %} {% include "web/_work_request-result-small.html" with result=workflow.result only %} {{ workflow.started_at|date:"Y-m-d H:i" }} {{ workflow.completed_at|date:"Y-m-d H:i" }} {% spaceless %} {% include "web/_badge-count.html" with title="Work requests completed successfully" bg_class="success" count=workflow.workflow_work_requests_success only %} - {% include "web/_badge-count.html" with title="Work requests terminated with a failure" bg_class="danger" count=workflow.workflow_work_requests_failure only %} {% endspaceless %} {% spaceless %} {% include "web/_badge-count.html" with title="Pending work requests" bg_class="secondary" count=workflow.workflow_work_requests_pending only %} - {% include "web/_badge-count.html" with title="Blocked work requests" bg_class="dark" count=workflow.workflow_work_requests_blocked only %} {% endspaceless %} {{ workflow.workflow_last_activity_at|date:"Y-m-d H:i" }} {{ workflow.created_by }}
{% include "web/_pagination.html" %} {% else %}

No workflows.

{% endif %} {% endblock %}