{% extends "base.html" %} {% set manufacturers_iot = [] %} {% set manufacturers_non_iot = [] %} {% for item in items %} {% if item.is_iot %} {% if item.preferred_mfg not in manufacturers_iot %} {% set _ = manufacturers_iot.append(item.preferred_mfg) %} {% endif %} {% else %} {% if item.preferred_mfg not in manufacturers_non_iot %} {% set _ = manufacturers_non_iot.append(item.preferred_mfg) %} {% endif %} {% endif %} {% endfor %} {% block title %}Devices{% endblock %} {% block content %}

Devices

IoT Transparency has scanned your home network and identified {{ items|length }} devices. On this page, you can see all the devices that were found, and view the devices' details, including their network activity and their manufacturer's privacy policies, when available.

Devices may be identified by the company that made the Wi-Fi chipset, Ethernet controller, or computer motherboard.

IoT devices

{% if manufacturers_iot %} {% with manufacturers=manufacturers_iot, items=items, is_iot=true %} {% include "device_cards.html" %} {% endwith %} {% else %}

No smart home devices were identified.

{% endif %} {% if manufacturers_non_iot %}

Non-IoT devices

{% with manufacturers=manufacturers_non_iot, items=items, is_iot=false %} {% include "device_cards.html" %} {% endwith %} {% else %}

No non-smart home devices were identified.

{% endif %} {% endblock %}