aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/dashboard/devices.pug
blob: f3605c0f28fd729b899a55cb4a198c93e9c5d828 (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
doctype html

html

    head

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

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

        title Devices | Home Control

    body

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

        main

            h1 Devices

            if !devices || devices.length < 1
            
                p No devices :(

            else

                section.devices

                    each device in devices

                        include ../../components/dashboard/device.pug