aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/dashboard/actions.pug
blob: 7992d440e574ae6ee1ba23a3a7bccf8aa378905a (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
28
29
30
31
32
33
34
35
doctype html

html

    head

        include ../../components/head.pug

        link(href="/public/css/dashboard.css" rel="stylesheet")

        title Actions | Home Control

    body

        main

            section.heading

                h1 Actions

                input(type="checkbox")

            if !actions || actions.length < 1

                p No actions :(

            else

                section.actions

                    each action in actions

                        include ../../components/dashboard/action.pug

        include ../../components/dashboard/sidebar.pug