mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-11-04 01:25:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "content"}}
 | 
						|
<div class="row">
 | 
						|
    <div class="col">
 | 
						|
        {{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>
 | 
						|
                <li><a href="/monitoring/projects/">All projects</a></li>
 | 
						|
            </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>
 | 
						|
                    <th>Name</th>
 | 
						|
                    <th>Jobs</th>
 | 
						|
                    <!-- <th>System View</th> -->
 | 
						|
                    <!-- <th>Analysis View</th> -->
 | 
						|
                </tr>
 | 
						|
            </thead>
 | 
						|
            <tbody>
 | 
						|
                {{range .Infos.clusters}}
 | 
						|
                    <tr>
 | 
						|
                        <td>{{.Name}}</td>
 | 
						|
                        <td><a href="/monitoring/jobs/?cluster={{.Name}}">Jobs</a></td>
 | 
						|
                        <!-- <td><a href="/monitoring/systems/?cluster={{.Name}}">System View</a></td> -->
 | 
						|
                        <!-- <td><a href="/monitoring/analysis/?cluster={{.Name}}">Analysis View</a></td> -->
 | 
						|
                    </tr>
 | 
						|
                {{end}}
 | 
						|
            </tbody>
 | 
						|
        </table>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{{end}}
 |