{% extends 'base.html' %} {% block title %}HEIN LAB | Workflow Builder{% endblock %} {% block body %}
{#
#} {# #}

{% if session["edit_action"] %} {% with action = session["edit_action"] %}
{{ action['action'] }}
{% if not action['args'] == None %}
{% if not action['args'].__class__.__name__ == 'dict' %}
{% else %} {% for arg in action['args'] %}
{% endfor %}
{% endif %}
{% endif %}
{% endwith %} {% else %} {% if instrument %}
Back
{# background-color: aliceblue;#}
{{ instrument }}
{% if instrument == 'if' or instrument == 'while' or instrument == 'variable' or instrument == 'wait' %}
{% if instrument == 'variable'%}
Your variable name cannot include space
{% endif %}
{% if instrument == 'variable' %} Variable Value {% else %} Statement {% endif %}
{% if instrument == 'variable'%}Your variable can be numbers, boolean (True or False) or text ("text"){% endif %}
{#
#} {# Add to#} {# #} {#
#}
{% endif %}
{% for function in functions %}

{# for setters #} {% if functions[function].__class__.__name__ == "dict" %} {% for arg in functions[function] %}
{% endfor %} {% else %} {% for parameter in functions[function].parameters.keys() %} {% set var = functions[function].parameters[parameter] %}
{% if var.annotation.__name__ == 'bool' %}
{% endif %}
{% endfor %}
Save value as
{% endif %} {#
#} {# Add to#} {# #} {#
#}
{# todo #}
{% endfor %}
{% else %}
    {% for instrument in ['if', 'while', 'variable', 'wait'] %}
    {% endfor %}
    {% for instrument in defined_variables %}
    {% endfor %}
{# {% if local_variables and not defined_variables %}#} {% if local_variables %}
    {% for instrument in local_variables %}
    {% endfor%}
{% endif %}
{% endif %} {% endif %}
{# file dropdown menu #}
Deck Name{{script.deck}}
Script Name{{ script.name }}
Editing status {{script.status}}
Output Values {% for i in script.config_return()[1] %} {{i}} {% endfor %}
Config Variables
    {% for i in script.config("script")[0] %}
  • {{i}}
  • {% endfor %}
Quick Save Compile and Run
{# modals#} {% endblock %}