diff options
Diffstat (limited to 'at/templates/admin.html')
-rw-r--r-- | at/templates/admin.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/at/templates/admin.html b/at/templates/admin.html new file mode 100644 index 0000000..c2fcb4b --- /dev/null +++ b/at/templates/admin.html @@ -0,0 +1,13 @@ +{% extends "basic.html" %} +{% block content %} +<table class="devices"> + <tr> + <th>MAC</th> + <th>Device type</th> + </tr> + {% for key, l in data.items() %} + {% for item in l %} + <tr><td>{{ item }}</td><td>{{ key }}</td></tr> + {% endfor %} + {% endfor %} +{% endblock %} |