mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-07-23 12:51:40 +02:00
update templates and frontend
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
<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}}
|
||||
@@ -37,8 +38,8 @@
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Jobs</th>
|
||||
<th>System View</th>
|
||||
<th>Analysis View</th>
|
||||
<!-- <th>System View</th> -->
|
||||
<!-- <th>Analysis View</th> -->
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -46,8 +47,8 @@
|
||||
<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>
|
||||
<!-- <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>
|
||||
|
@@ -12,18 +12,7 @@
|
||||
jobId: "{{ .Infos.jobId }}",
|
||||
clusterId: "{{ .Infos.clusterId }}"
|
||||
};
|
||||
const clusterCockpitConfigPromise = Promise.resolve({
|
||||
plot_general_colorscheme: {{ .Config.plot_general_colorscheme }},
|
||||
plot_general_lineWidth: {{ .Config.plot_general_lineWidth }},
|
||||
plot_general_colorBackground: {{ .Config.plot_general_colorBackground }},
|
||||
plot_view_showRoofline: {{ .Config.plot_view_showRoofline }},
|
||||
plot_view_showPolarplot: {{ .Config.plot_view_showPolarplot }},
|
||||
plot_view_showStatTable: {{ .Config.plot_view_showStatTable }},
|
||||
plot_view_plotsPerRow: {{ .Config.plot_view_plotsPerRow }},
|
||||
job_view_selectedMetrics: {{ .Config.job_view_selectedMetrics }},
|
||||
job_view_nodestats_selectedMetrics: {{ .Config.job_view_nodestats_selectedMetrics }},
|
||||
job_view_polarPlotMetrics: {{ .Config.plot_view_polarPlotMetrics }},
|
||||
});
|
||||
const clusterCockpitConfig = {{ .Config }};
|
||||
</script>
|
||||
<script src='/build/job.js'></script>
|
||||
{{end}}
|
||||
|
15
templates/monitoring/list.html
Normal file
15
templates/monitoring/list.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{{define "content"}}
|
||||
<div id="svelte-app"></div>
|
||||
{{end}}
|
||||
|
||||
{{define "stylesheets"}}
|
||||
<link rel='stylesheet' href='/build/list.css'>
|
||||
{{end}}
|
||||
{{define "javascript"}}
|
||||
<script>
|
||||
const listType = {{ .Infos.listType }};
|
||||
const filterPresets = {{ .FilterPresets }};
|
||||
const clusterCockpitConfig = {{ .Config }};
|
||||
</script>
|
||||
<script src='/build/list.js'></script>
|
||||
{{end}}
|
@@ -1,14 +0,0 @@
|
||||
{{define "content"}}
|
||||
<div id="svelte-app"></div>
|
||||
{{end}}
|
||||
|
||||
{{define "stylesheets"}}
|
||||
<link rel='stylesheet' href='/build/users.css'>
|
||||
{{end}}
|
||||
{{define "javascript"}}
|
||||
<script>
|
||||
const filterPresets = null;
|
||||
const clusterCockpitConfigPromise = Promise.resolve({});
|
||||
</script>
|
||||
<script src='/build/users.js'></script>
|
||||
{{end}}
|
@@ -4,10 +4,11 @@ import (
|
||||
"html/template"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
)
|
||||
|
||||
var templatesDir string
|
||||
var debugMode bool = true
|
||||
var debugMode bool = os.Getenv("DEBUG") == "1"
|
||||
var templates map[string]*template.Template = map[string]*template.Template{}
|
||||
|
||||
type Page struct {
|
||||
@@ -28,11 +29,13 @@ func init() {
|
||||
base := template.Must(template.ParseFiles(templatesDir + "base.html"))
|
||||
files := []string{
|
||||
"home.html", "404.html", "login.html",
|
||||
"monitoring/jobs.html", "monitoring/job.html",
|
||||
"monitoring/users.html", "monitoring/user.html",
|
||||
"monitoring/analysis.html",
|
||||
"monitoring/systems.html",
|
||||
"monitoring/node.html",
|
||||
"monitoring/jobs.html",
|
||||
"monitoring/job.html",
|
||||
"monitoring/list.html",
|
||||
"monitoring/user.html",
|
||||
// "monitoring/analysis.html",
|
||||
// "monitoring/systems.html",
|
||||
// "monitoring/node.html",
|
||||
}
|
||||
|
||||
for _, file := range files {
|
||||
|
Reference in New Issue
Block a user