Workflow: {{ workflow.id }} - {{ workflow.name }}
View execution timelines, download raw datasets and check detailed step information.
{% if grouped.prep %}
Prep
{% for phase in grouped.prep %}
{% include "components/step_card.html" %}
{% endfor %}
{% endif %}
{% for repeat_index, phase_list in grouped.script.items()|sort %}
Iteration {{ repeat_index }}
{% for phase in phase_list %}
{% include "components/step_card.html" %}
{% endfor %}
{% endfor %}
{% if grouped.cleanup %}
Cleanup
{% for phase in grouped.cleanup %}
{% include "components/step_card.html" %}
{% endfor %}
{% endif %}