{% extends 'base.html' %} {% block content %}

Device {{ device.name }} ({{ device.device_id.device_uuid.uuid }})


{% if device.components|length > 1 %}
{% for component in (device.components|sort(true, attribute='name')) %} {% endfor %}
Component UUID Name Type Parent Attributes
{{ component.component_uuid.uuid }} {{ component.name }} {{ component.type }} {{ component.parent }} {{ component.attributes }}
{% endif %}
{% endblock %}