{% 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 %}
UUID Name Type Endpoints Drivers Status Config Rules
{{ device.device_id.device_uuid.uuid }} {{ device.name }} {{ device.device_type }} {{ device.device_endpoints | length }}
    {% for driver in device.device_drivers %}
  • {{ dde.Name(driver).replace('DEVICEDRIVER_', '').replace('UNDEFINED', 'EMULATED') }}
  • {% endfor %}
{{ dose.Name(device.device_operational_status).replace('DEVICEOPERATIONALSTATUS_', '') }} {{ device.device_config.config_rules | length }}
No devices found
{% endblock %}