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

<div class="container">
	<div class="row">
		<table class="table table-striped table-hover ">
			<thead>
				<th>#</th>
				<th>Host</th>
				<th>Description</th>
				<th>Status</th>
				<th>Last Update</th>
				<th>Failure Reason</th>
			</thead>
			<tbody>
{{range $index, $results := .}}
			<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>{{.UpdatedAt}}</td>
				<td>{{.Reason}}</td>
			</tr>
{{end}}
			</tbody>
		</table>
	</div>
</div>
{{template "footer.html"}}