|
{% for workflow_execution in workflow_executions %}
{% ifchanged %}
{{ workflow_execution.created_at|time }} |
{% else %}
--> |
{% endifchanged %}
{% endfor %}
{{ workflow.name }} |
{% for workflow_execution in workflow_executions %}
{% with workflow_execution_status=status|get_value:workflow_execution.status %}
|
{% endwith %}
{% endfor %}
{% for task,task_executions in workflow_task_executions.items %}
{{ task.name }} |
{% for task_execution in task_executions %}
{% if task_execution %}
{% with task_execution_status=status|get_value:task_execution.status %}
|
{% endwith %}
{% else %}
|
{% endif %}
{% empty %}
NA |
{% endfor %}
{% empty %}
No task available |
{% endfor %}