Workflow execution

{{ workflow.workflow_name }}

{% if workflow.status == "completed" %} Completed {% else %} Failed {% endif %}

Execution time

{{ workflow.duration_display }}

Executed steps

{{ workflow.step_count }}

Finished

{{ workflow.finished_display }}

{% if related_object %}

Related object

{{ related_object.label }}

{{ related_object.type_label }} · {{ related_object.object_id }}

{% if related_object.available and related_object.url %} Open object {% else %} Object no longer available {% endif %}
{% endif %}

Execution graph

{% if workflow.graph.nodes %}
{% for node in workflow.graph.nodes %}

{{ node.label }}

{{ node.type }} {% if node.execution_count > 1 %} ×{{ node.execution_count }} {% else %} {{ node.status }} {% endif %}
{% endfor %}
{% else %}
No workflow graph was available for this execution.
{% endif %}
{% if run_available and workflow.run_url %}

Detailed run logging is still available.

Open workflow run
{% else %}
The original workflow-run record is no longer available. This notification is rendered from its saved execution snapshot.
{% endif %}