diff -r 000000000000 -r 2e8eeb919028 configurationengine/source/scripts/info_value_report_template.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configurationengine/source/scripts/info_value_report_template.html Thu Mar 11 17:04:37 2010 +0200 @@ -0,0 +1,59 @@ +{% 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 %} + +
NameTypePossible 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 %} \ No newline at end of file