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

Devices

Add New Device
{{ devices | length }} devices found in context {{ session['context_uuid'] }}
{% if devices %} {% for device in devices %} {% endfor %} {% else %} {% endif %}
# Type Endpoints Drivers Status
{{ device.device_id.device_uuid.uuid }} {{ device.device_type }}
    {% for end_point in device.device_endpoints %}
  • {{ end_point.endpoint_id.endpoint_uuid.uuid }}
  • {% endfor %}
    {% for driver in device.device_drivers %}
  • {{ dde.Name(driver).replace('DEVICEDRIVER_', '').replace('UNDEFINED', 'EMULATED') }}
  • {% endfor %}
{{ dose.Name(device.device_operational_status).replace('DEVICEOPERATIONALSTATUS_', '') }}
No devices found
{% endblock %}