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