{% extends base_template %} {% load static %} {% load workflows %} {% block content %}
This page lets you monitor workflows started in the {{ workspace }} workspace.
FilterThere were issues with your filter criteria:
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 }} |
No workflows.
{% endif %} {% endblock %}