{% if each_option['type'] in ['float', 'integer', 'text'] %}
{% elif each_option['type'] == 'multiline_text' %}
{% elif each_option['type'] == 'select' %}
{% elif each_option['type'] == 'select_measurement' %}
{% elif each_option['type'] == 'select_measurement_channel' %}
{% elif each_option['type'] == 'select_multi_measurement' %} {% set multiselect_size = 0 %} {% if 'Input' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_input|length %} {% endif %} {% if 'Math' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_math|length %} {% endif %} {% if 'Function' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_function|length %} {% endif %} {% if 'Output' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_output|length %} {% endif %} {% if 'PID' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_pid|length %} {% endif %} {% if 'Tag' in each_option['options_select'] %} {% set multiselect_size = multiselect_size + choices_tag|length %} {% endif %}
{% elif each_option['type'] == 'select_device' %}
{% elif each_option['type'] == 'bool' %}
{% elif each_option['type'] == 'button' %}
{% endif %}