cc-backend/templates/home.tmpl

48 lines
1.8 KiB
Cheetah
Raw Normal View History

{{define "content"}}
<div class="row">
2022-02-15 10:03:09 +01:00
<div class="col">
2021-12-09 16:27:48 +01:00
<h2>Clusters</h2>
<table class="table">
<thead>
<tr>
2021-12-17 15:49:22 +01:00
<th>Name</th>
2022-02-16 12:29:54 +01:00
<th>Running Jobs</th>
<th>Total Jobs</th>
<th>Short Jobs in past 24h</th>
2021-12-09 16:27:48 +01:00
<th>Jobs</th>
2022-02-16 12:29:54 +01:00
{{if .User.IsAdmin}}
<th>System View</th>
<th>Analysis View</th>
{{end}}
2021-12-09 16:27:48 +01:00
</tr>
</thead>
<tbody>
2022-02-16 12:29:54 +01:00
{{if .User.IsAdmin}}
{{range .Infos.clusters}}
<tr>
<td>{{.Name}}</td>
<td>{{.RunningJobs}}</td>
<td>{{.TotalJobs}}</td>
<td>{{.RecentShortJobs}}</td>
2022-02-16 12:29:54 +01:00
<td><a href="/monitoring/jobs/?cluster={{.Name}}">Jobs</a></td>
<td><a href="/monitoring/systems/{{.Name}}">System View</a></td>
<td><a href="/monitoring/analysis/{{.Name}}">Analysis View</a></td>
</tr>
{{end}}
{{else}}
{{range .Infos.clusters}}
<tr>
<td>{{.Name}}</td>
<td>{{.RunningJobs}}</td>
<td>{{.TotalJobs}}</td>
<td>{{.RecentShortJobs}}</td>
2022-02-16 12:29:54 +01:00
<td><a href="/monitoring/jobs/?cluster={{.Name}}">Jobs</a></td>
</tr>
{{end}}
2021-12-09 16:27:48 +01:00
{{end}}
</tbody>
</table>
</div>
</div>
{{end}}