mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
23 lines
812 B
HTML
23 lines
812 B
HTML
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/user.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const userInfos = {
|
|
userId: "{{ .Infos.userId }}"
|
|
};
|
|
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_list_selectedMetrics: {{ .Config.plot_list_selectedMetrics }},
|
|
plot_list_jobsPerPage: {{ .Config.plot_list_jobsPerPage }}
|
|
});
|
|
</script>
|
|
<script src='/build/user.js'></script>
|
|
{{end}}
|