{% 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 %}
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.
No smart home devices were identified.
{% endif %} {% if manufacturers_non_iot %}No non-smart home devices were identified.
{% endif %} {% endblock %}