cc-backend/templates/home.tmpl

59 lines
1.9 KiB
Cheetah
Raw Normal View History

{{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>
<th>System View</th>
2022-01-17 13:31:40 +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>
<td><a href="/monitoring/systems/{{.Name}}">System View</a></td>
2022-01-17 13:31:40 +01:00
<!-- <td><a href="/monitoring/analysis/?cluster={{.Name}}">Analysis View</a></td> -->
2021-12-09 16:27:48 +01:00
</tr>
{{end}}
</tbody>
</table>
</div>
</div>
{{end}}