check in checkinator into hswaw/checkinator

repository: https://code.hackerspace.pl/checkinator
revision: 713c7e6c1a8fd6147522c1a5e3067898a1d8bf7a

Change-Id: I1bd2975a46ec0d9a89d6594fb4b9d49832001627
Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1219
Reviewed-by: q3k <q3k@hackerspace.pl>
diff --git a/hswaw/checkinator/at/templates/admin.html b/hswaw/checkinator/at/templates/admin.html
new file mode 100644
index 0000000..c2fcb4b
--- /dev/null
+++ b/hswaw/checkinator/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 %}