{% extends "cone_base.html" %} {% block title %}Data value info{% endblock %} {% block content %}

Configuration data value info


{% for config in data.value_data.configs %} {% endfor %} {% for feature_group in data.value_data.feature_groups %} {% for feature in feature_group.features %} {% if feature.modified %}{% else %}{% endif %} {% for config in data.value_data.configs -%} {%- if feature.ref in config.values -%} {%- set value = config.values[feature.ref] %} {% else -%} {%- set value = "" %} {% endif -%} {% endfor %} {% endfor -%} {% endfor %}
Name Type Possible values{{ config.path }}
{{ feature_group.name }}
{{ feature.name }} {{ feature.type }} {%- for option in feature.options -%} {{ option.get_name() }}
{% endfor -%}
{%- if value.is_sequence_data -%} {% if value.rows|length > 0 %} {%- for row in value.rows -%} {%- for column in value.columns -%} {%- endfor -%} {%- endfor -%}
Item {{ loop.index }}
{{ column.name }} {{ row[column.ref] }}
{% endif %} {%- else -%} {{- value -}} {%- endif -%}
{% endblock %}