{% extends 'base.html' %}
{% block title %}IvoryOS | Experiment Results{% endblock %}
{% block body %}
Experiment Step View
Workflow: {{ workflow.name }}
{% if grouped.prep %}
Prep Phase
{% for step in grouped.prep %}
{% include "components/step_card.html" %}
{% endfor %}
{% endif %}
{% for repeat_index, step_list in grouped.script.items()|sort %}
Iteration {{ repeat_index }}
{% for step in step_list %}
{% include "components/step_card.html" %}
{% endfor %}
{% endfor %}
{% if grouped.cleanup %}
Cleanup Phase
{% for step in grouped.cleanup %}
{% include "components/step_card.html" %}
{% endfor %}
{% endif %}
{% endblock %}