{% extends 'base.html' %} {% block title %}IvoryOS | Design execution{% endblock %} {% block body %} {% if no_deck_warning and not dismiss %} {# auto pop import when there is no deck#} {% endif %}

{% if script['script'] or script['prep'] or script['cleanup'] %}

Control panel:

{# {% if not no_deck_warning%}#}
{# {% endif %}#}

Control with csv config:

Current configure: {{ filename }}

{#
  • #} empty config
    {#Preview config file#}
    {% if config_preview %} {% for line in config_preview[0].keys() %} {% endfor %} {% for line in config_preview %} {% for i in line.values() %} {% endfor %} {% endfor %}
    {{ line }}
    {{ i }}
    {% else %} Empty config file {% endif %}
    {% if filename and not no_deck_warning %}
    {% endif %}
    Parameters
    {% for config in config_list %}
    {{ config }}:
    {% endfor %}
    Objectives
    {% for objective in return_list %}
    {{ objective }}:
    {% endfor %}
    Budget
    {% if not no_deck_warning%}
    {% endif %}
    {#

    Control panel:

    #}
    {% for column in config_list %} {% endfor %}
    {{ column }}
    {% else %}
    {% endif %}

    Progress:
    {% if "prep" in line_collection.keys() %} {% set stype = "cleanup" %} {% set stype = "prep" %}
    Preparation:
    {% for code in line_collection["prep"] %}
    {{code}}
    {% endfor %} {% endif %} {% if "script" in line_collection.keys() %} {% set stype = "script" %}
    Experiment:
    {% for code in line_collection["script"] %}
    {{code}}
    {% endfor %} {% endif %} {% if "cleanup" in line_collection.keys() %} {% set stype = "cleanup" %}
    Cleanup:
    {% for code in line_collection["cleanup"] %}
    {{code}}
    {% endfor %} {% endif %}

    Progress:
    Note: The current step cannot be paused or stopped until it completes.

    Log:

    {#
    #} {#

    #} {# #} {#

    #} {#
    #} {#
    #} {# {% if session["most_recent_result"] %}#} {#

    Download the latest data

    #} {# {% endif %}#} {#

    #} {#

    All data files
    #} {# {% for datafile in data_list %}#} {#
    #} {# {{ datafile }} #} {#
    #} {# {% endfor %}#} {#

    #} {#
    #} {#
    #} {#
    #}

    {% set labels = { 'prep': 'Preparation:', 'script': 'Experiment:', 'cleanup': 'Clean up:' } %} {% for key, buttons in design_buttons.items() %} {% if buttons %}
    {{labels[key]}}
      {% for button in buttons %}
    • {% endfor %}
    {% endif %} {% endfor %}

    {% for stype, script in dot_py.items() %}
    {{script}}
    {% endfor %} Download
    {% endblock %}