From 3a2f938cfdfbd130db51ae64acf67e66b955a27f Mon Sep 17 00:00:00 2001 From: Autumn Date: Tue, 12 May 2026 19:36:17 +0100 Subject: [pages] added basic actionss route --- src/views/pages/dashboard/actions.pug | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/views/pages/dashboard/actions.pug (limited to 'src/views/pages') 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) -- cgit v1.3