2021-12-08 15:50:03 +01:00
|
|
|
{{define "content"}}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
2021-12-09 16:27:48 +01:00
|
|
|
{{if .Infos.username}}
|
|
|
|
<i class="bi bi-person-circle"></i> {{ .Infos.username }}
|
|
|
|
{{if .Infos.admin}}
|
|
|
|
<span class="badge bg-primary">Admin</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="col" style="text-align: right;">
|
|
|
|
<form method="post" action="/logout">
|
|
|
|
<button type="submit" class="btn btn-primary">Logout</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
{{if .Infos.admin}}
|
|
|
|
<div class="col-4">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/monitoring/jobs/">All jobs</a></li>
|
|
|
|
<li><a href="/monitoring/users/">All users</a></li>
|
2022-01-17 13:31:40 +01:00
|
|
|
<li><a href="/monitoring/projects/">All projects</a></li>
|
2021-12-09 16:27:48 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="col-4">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/monitoring/jobs/">My jobs</a></li>
|
|
|
|
<li><a href="/monitoring/user/{{.Infos.username}}">My user view</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<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}}
|