blob: 2c75c8ba3b7cfb77c3466295b255506248e4e088 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{{template "header.html"}}
{{template "navbar.html"}}
{{if .Sticky}}
<div class="container">
<div class="row">
<!--div class="col-md-6 col-md-offset-3"-->
<!--div class="col-md-4 col-md-offset-4 panel panel-danger shadow-z-2" role="panel"-->
<div class="panel panel-info shadow-z-2" role="panel" id="dd-sticky">
<div class="panel-heading"><h3 class="panel-title">Information</h3></div>
<div class="panel-body">
<strong>{{print .Sticky}}</strong>
</div>
</div>
<!--/div-->
</div>
</div>
{{end}}
<div class="container">
<div class="row">
<button id="btn-reload" class="btn btn-primary btn-raised"><span class="glyphicon glyphicon-refresh"></span> Reload</button>
<!--a id="" class="btn btn-success btn-raised toggle"><span class="glyphicon glyphicon-refresh"></span> Show failure reasons</a-->
<table class="table table-striped table-hover table-responsive">
<thead>
<th>#</th>
<th>Host</th>
<th>Description</th>
<th>Status</th>
<!--th>Status Code</th-->
<th>Last Update</th>
<th class="hide">Failure Reason</th>
</thead>
<tbody>
{{range $index, $results := .Hosts}}
<tr class="{{.Class}}">
<td>{{add $index 1}}</td>
<td>{{.Host}} <a href="{{.Url}}" title="{{.Host}}" target="_blank"> <span class="fa fa-external-link-square"></span></a></td>
<td>{{.Description}}</td>
<td>{{.Status}}</td>
<!--td>{{.StatusCode}}</td-->
<td>{{.UpdatedAt}}</td>
<td class="hide">{{.Reason}}</td>
</tr>
{{end}}
</tbody>
</table>
<p>Next run: <strong>{{.NextRun}}</strong></p>
<!--button class="admin-link btn btn-raised btn-default"><h4 class=""><span class="glyphicon glyphicon-cog"></span> Admin</h4></button-->
<!--h4 class="admin-link"><a class="" href="/admin" title="admin"><span class="glyphicon glyphicon-cog"></span> Admin</a></h4-->
<h4 class="admin-link"><a class="" href="/admin" title="admin"><span class="fa fa-cog"></span> Admin</a></h4>
</div>
</div>
{{template "footer.html"}}
|