summaryrefslogtreecommitdiff
path: root/views/index.html
blob: 61c8597793a4cf7472413014851241484bf1e591 (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
{{template "header.html"}}
{{template "navbar.html"}}

<div class="container">
	<div class="row">
		<button id="btn-reload" class="btn btn-success 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 ">
			<thead>
				<th>#</th>
				<th>Host</th>
				<th>Url</th>
				<th>Status</th>
				<!--th>Status Code</th-->
				<th class="hide">Failure Reason</th>
			</thead>
			<tbody>
{{range $index, $results := .}}
		<tr class="{{.Class}}">
				<td>{{add $index 1}}</td>
				<td>{{.Host}}</td>
				<td>{{.Url}}</td>
				<td>{{.Status}}</td>
				<!--td>{{.StatusCode}}</td-->
				<td class="hide">{{.Reason}}</td>
			</tr>
{{end}}
			</tbody>
		</table>
	</div>
</div>
{{template "footer.html"}}