-
- {% for attribute in capability.attributes %}
- {% with capability.attributes|get_item:attribute as attribute %}
- {% if attribute.is_container %}
-
{{ attribute.label }} :
-
+
Component : {{capability.component}}
+
+
+
View file :
+ attributes :
+
+
+ {% for attribute in capability.attributes %}
+ {% with capability.attributes|get_item:attribute as attribute %}
+ {% if attribute.is_container %}
+
{{ attribute.label }} :
+
+
+
+
Variable
+
Unit
+
Values
+
+
+
+ {% for val_name in attribute.value %}
+
+
{{ val_name }}
+
{{ attribute.unit|get_item:val_name}}
+ {% for value in attribute.value|get_item:val_name %}
+
+ {% if value|get_type == 'list' %}
+
+
+
+ {% with value as values %}
+
+ {% for value in values %}
+
{{value}}
+ {% endfor %}
+
+
+
+ {% endwith %}
+
+
+ {% else %}
+
{{value}}
+ {% endif %}
+ {% endfor %}
+
+ {% endfor %}
+
+
+ {% elif attribute.is_enum %}
+
{{ attribute.label }} :
+
+
Variable
-
Unit
-
Values
+
Values (One of the following values)
- {% for val_name in attribute.value %}
-
{{ val_name }}
-
{{ attribute.unit|get_item:val_name}}
- {% for value in attribute.value|get_item:val_name %}
-
- {% if value|get_type == 'list' %}
-