| Attribute |
Value |
{% for child in vehicle.children %}
{% if child.enabled and child.id not in "images,commands,specification,software,doors,windows,lights,drives,charging,climatization,window_heating,maintenance,position" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% if vehicle.specification.enabled %}
| Attribute |
Value |
{% for child in vehicle.specification.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.software.enabled %}
| Attribute |
Value |
{% for child in vehicle.software.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.drives.enabled %}
| Attribute |
Value |
{% for child in vehicle.drives.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.doors.enabled %}
| Attribute |
Value |
{% for child in vehicle.doors.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.windows.enabled %}
| Attribute |
Value |
{% for child in vehicle.windows.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.lights.enabled %}
| Attribute |
Value |
{% for child in vehicle.lights.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.charging.enabled %}
| Attribute |
Value |
{% for child in vehicle.charging.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.climatization.enabled %}
| Attribute |
Value |
{% for child in vehicle.climatization.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.maintenance.enabled %}
| Attribute |
Value |
{% for child in vehicle.maintenance.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}
{% if vehicle.position.enabled %}
| Attribute |
Value |
{% for child in vehicle.position.children %}
{% if child.enabled and child.id != "commands" %}
| {{ child.id }} |
{{ child|format_cc_element:""|safe }} |
{% endif %}
{% endfor %}
{% endif %}