{{define "content"}}
<div class="row">
    <div class="col">
        <h2>Clusters</h2>
        <table class="table">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Running Jobs</th>
                    <th>Total Jobs</th>
                    {{if .User.HasRole .Roles.admin}}
                        <th>Status View</th>
                        <th>System View</th>
                    {{end}}
                </tr>
            </thead>
            <tbody>
                {{if .User.HasRole .Roles.admin}}
                    {{range .Infos.clusters}}
                        <tr>
                            <td>{{.ID}}</td>
                            <td><a href="/monitoring/jobs/?cluster={{.ID}}&state=running">{{.RunningJobs}} jobs</a></td>
                            <td><a href="/monitoring/jobs/?cluster={{.ID}}">{{.TotalJobs}} jobs</a></td>
                            <td><a href="/monitoring/status/{{.ID}}">Status View</a></td>
                            <td><a href="/monitoring/systems/{{.ID}}">System View</a></td>
                        </tr>
                    {{end}}
                {{else}}
                    {{range .Infos.clusters}}
                        <tr>
                            <td>{{.ID}}</td>
                            <td><a href="/monitoring/jobs/?cluster={{.ID}}&state=running">{{.RunningJobs}} jobs</a></td>
                            <td><a href="/monitoring/jobs/?cluster={{.ID}}">{{.TotalJobs}} jobs</a></td>
                        </tr>
                    {{end}}
                {{end}}
            </tbody>
        </table>
    </div>
</div>
{{end}}