aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/dashboard/actions.pug
blob: 06f5aed0d5f9c0adf144205d15dad490371e196a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)