aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/dashboard/devices.pug
blob: 117513696d9d558cd676ea6cbcbfef550eb700ba (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 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)