aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/dashboard/devices.pug
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/pages/dashboard/devices.pug')
-rw-r--r--src/views/pages/dashboard/devices.pug27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/views/pages/dashboard/devices.pug b/src/views/pages/dashboard/devices.pug
new file mode 100644
index 0000000..1175136
--- /dev/null
+++ b/src/views/pages/dashboard/devices.pug
@@ -0,0 +1,27 @@
+doctype html
+
+html
+
+ head
+
+ include ../../components/head.pug
+
+ title Devices | Home Control
+
+ body
+
+ include ../../components/dashboard/sidebar.pug
+
+ main
+
+ h1 Devices
+
+ if !devices || devices.length < 1
+
+ p No devices :(
+
+ else
+
+ each device in devices
+
+ p= JSON.stringify(device)