{% extends 'base.html' %} {% block head %} {% endblock %} {% block header %} {% block title %}{{vehicle.name.value if vehicle.name.enabled else vehicle.id}}{% endblock %} {% endblock %} {% block content %}
...
{% if vehicle.position.enabled %}
{% endif %}

{% for child in vehicle.children %} {% if child.enabled and child.id not in ['images', 'commands', 'specification', 'software', 'doors', 'windows', 'lights', 'drives', 'charging', 'climatization', 'maintenance', 'position'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.specification.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.software.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.drives.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.doors.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.windows.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.lights.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% if hasattr(vehicle, 'charging') %}

{% for child in vehicle.charging.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% endif %}

{% for child in vehicle.climatization.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.maintenance.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% for child in vehicle.position.children %} {% if child.enabled and child.id not in ['commands'] %} {% endif %} {% endfor %}
Attribute Value
{{child.id}} {{format_cc_element(child, '', linebreak=true)}}

{% endblock %}