Files
cc-backend/web/templates/monitoring/dashboard.tmpl
Christoph Kluge 4083de2a51 Add public dashboard and route, add DoubleMetricPlot and GQL queries
- add roofline legend display switch
- small fixes
2025-12-09 10:26:55 +01:00

15 lines
362 B
Cheetah

{{define "content-public"}}
<div id="svelte-app"></div>
{{end}}
{{define "stylesheets"}}
<link rel='stylesheet' href='/build/dashpublic.css'>
{{end}}
{{define "javascript-public"}}
<script>
const infos = {{ .Infos }};
const clusterCockpitConfig = {{ .Config }};
</script>
<script src='/build/dashpublic.js'></script>
{{end}}