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

Link {{ link.name }} ({{ link.link_id.link_uuid.uuid }})


UUID: {{ link.link_id.link_uuid.uuid }}
Name: {{ link.name }}
Type: {{ lte.Name(link.link_type).replace('LINKTYPE_', '') }}
{% for endpoint in link.link_endpoint_ids %} {% endfor %}
Endpoint UUID Name Device Endpoint Type
{{ endpoint.endpoint_uuid.uuid }} {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, (endpoint.endpoint_uuid.uuid, ''))[0] }} {{ device_names.get(endpoint.device_id.device_uuid.uuid, endpoint.device_id.device_uuid.uuid) }} {{ endpoints_data.get(endpoint.endpoint_uuid.uuid, ('', '-'))[1] }}
Attributes: {% for field_descriptor, field_value in link.attributes.ListFields() %} {% endfor %}
Key Value
{{ field_descriptor.name }} {{ field_value }}
{% endblock %}