{% 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{% if config.name %}{{config.name}} ({{ config.path }}){% else %}{{config.path}}{% endif %}
{{ 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 }} {% if feature.ref+'.'+column.ref in config.refs %}{% endif %} {{- row[column.ref] -}} {% if feature.ref+'.'+column.ref in config.refs %}{% endif %}
{% endif %} {%- else -%} {% if feature.ref in config.refs %}{% endif %} {{- value -}} {% if feature.ref in config.refs %}{% endif %} {%- endif -%}
{% endblock %}