blob: c2fcb4bd15f79cb534067a861c367724f29d13e4 [file] [log] [blame]
vuko3cd087d2021-12-28 13:19:40 +01001{% extends "basic.html" %}
2{% block content %}
3<table class="devices">
4 <tr>
5 <th>MAC</th>
6 <th>Device type</th>
7 </tr>
8 {% for key, l in data.items() %}
9 {% for item in l %}
10 <tr><td>{{ item }}</td><td>{{ key }}</td></tr>
11 {% endfor %}
12 {% endfor %}
13{% endblock %}