2021-12-08 15:50:03 +01:00
|
|
|
{{define "content"}}
|
|
|
|
<div class="row">
|
2021-12-09 16:27:48 +01:00
|
|
|
<div class="col-8">
|
|
|
|
<h2>Clusters</h2>
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-12-17 15:49:22 +01:00
|
|
|
<th>Name</th>
|
2021-12-09 16:27:48 +01:00
|
|
|
<th>Jobs</th>
|
2022-02-02 10:12:16 +01:00
|
|
|
<th>System View</th>
|
2022-02-03 10:42:15 +01:00
|
|
|
<th>Analysis View</th>
|
2021-12-09 16:27:48 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range .Infos.clusters}}
|
|
|
|
<tr>
|
2021-12-17 15:49:22 +01:00
|
|
|
<td>{{.Name}}</td>
|
|
|
|
<td><a href="/monitoring/jobs/?cluster={{.Name}}">Jobs</a></td>
|
2022-02-02 10:12:16 +01:00
|
|
|
<td><a href="/monitoring/systems/{{.Name}}">System View</a></td>
|
2022-02-03 10:42:15 +01:00
|
|
|
<td><a href="/monitoring/analysis/{{.Name}}">Analysis View</a></td>
|
2021-12-09 16:27:48 +01:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-12-08 15:50:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|