{% extends 'base.html' %} {% block title %}IvoryOS | Experiment Results{% endblock %} {% block body %}

Execution Timeline

Loading...
Loading plot data...

Workflow: {{ workflow.name }}

{% 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 %}
{% endblock %}