summaryrefslogtreecommitdiffstats
path: root/views/index.html
blob: 8ea35715e1f6d1e675dae89e4dcae8ad965e5e87 (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
<!DOCTYPE html>
<html ng-app="status-app">

<head>
    <meta charset="utf-8">
    <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
    <link href='https://fonts.googleapis.com/css?family=Lato:300,400italic' rel='stylesheet' type='text/css'>
    <title>Radiodiodi system status</title>
    <script src="angular.min.js"></script>
    <script src="client.js"></script>
    <link rel="stylesheet" href="style.css" />
</head>
<body ng-controller="status-controller">

    <div ng-repeat="system in systems" class="system" ng-class="system.status ? 'good-system' : 'bad-system'">
        <div class="system-title-container">
            <h1 class="system-title">
                {{ system.name }}
            </h1>
        </div>
        <div class="system-info-container">
            <h3 class="system-info-elem">{{ system.status ? "UP" : "DOWN" }}</h3>
            <h3 class="system-info-elem">Uptime: {{ system.uptime }}%</h3>
        </div>
    </div>

</body>
</html>