Validation
{% if workflow_issues and workflow_issues|length > 0 %}
{{ workflow_issues|length }} issue(s)
{% else %}
No issues detected
{% endif %}
{% for issue in workflow_issues %}
{{ issue.loc }}
{% if issue.line %}
(line {{ issue.line }})
{% endif %}
– {{ issue.message }}
{% endfor %}
Execution
{% if execution_summary %}
Workflow executed successfully.
{% if execution_summary.total_states_executed is defined %}
States executed: {{ execution_summary.total_states_executed }}
{% endif %}
{% elif execution_error %}
{{ execution_error }}
{% if execution_error_details and execution_error_details.failing_state %}
State: {{ execution_error_details.failing_state }}
{% if execution_error_details.state_line %}
(line {{ execution_error_details.state_line }})
{% endif %}
{% endif %}
{% if execution_error_details and execution_error_details.traceback %}
{{ execution_error_details.traceback }}
{% endif %}
{% else %}
No execution requested yet.
{% endif %}