{% extends "base.html" %}
{% block extraHead %}
{% endblock extraHead %}
{% block content %}
Device {{device['devType']}}
Description
Name |
Content |
Address |
{{addr}} |
Device Type |
{{device.devType}} |
Vendor Id |
{{device.vendorID}} |
Product Id |
{{device.productID}} |
Version |
{{device.version}} |
Parent |
{{device.parent}} |
Url |
{{device.url}} |
Info |
{{device.info}} |
Unsupported Attributes |
{{device.unsupportedAttributes}} |
Unsupported Methods |
{{device.unsupportedMethods}} |
Unsupported Notifications |
{{device.unsupportedNotifications}} |
{% if schema %}
Attributes
Name |
Value |
Unit |
Type |
Description |
{% for attribute,val in schema.attributes.iteritems() %}
{{attribute}} |
{{device[attribute]}} |
{{val.unit}} |
{{val.type.type}} |
{{val.description}} |
{% endfor %}
Methods
{% else %}
Schema Not Found!
Several options:
- There is not a schema repository in your xAAL network
- The vendor of the device did not provide a schema
{% endif %}
Tags
Current Tags
{% if tags %}
{% for tag in tags %}
{% endfor %}
{% else %}
Tags Not Found!
Several options:
- There is not a xAAL metadatadb device in your xAAL network
- Or you did not enter tags for this device
{% endif %}
Manage Tags
{% endblock content %}