{% for category, devices in hardware_details.items() %} {% if category != "Other" %} {% endif %} {% else %} There are no hardware details available for this machine. {% endfor %}
{{ category }}
    {% for device in devices %}
  • {{ device.name }} {% if device.bus in ["usb", "pci"] %} ({{ device.identifier -}} {% if device.subsystem %} {{ device.subsystem -}} {% endif %}) {% endif %}
  • {% endfor %}