2021-12-08 15:50:03 +01:00
|
|
|
{{define "content"}}
|
|
|
|
<div id="svelte-app"></div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "stylesheets"}}
|
|
|
|
<link rel='stylesheet' href='/build/jobs.css'>
|
|
|
|
{{end}}
|
2022-02-03 09:39:04 +01:00
|
|
|
|
2021-12-08 15:50:03 +01:00
|
|
|
{{define "javascript"}}
|
|
|
|
<script>
|
2021-12-09 16:27:48 +01:00
|
|
|
const filterPresets = {{ .FilterPresets }};
|
2022-01-10 16:14:54 +01:00
|
|
|
const clusterCockpitConfig = {{ .Config }};
|
2023-03-06 11:44:38 +01:00
|
|
|
const authlevel = {{ .User.GetAuthLevel }};
|
|
|
|
const roles = {{ .Roles }};
|
2024-09-24 11:13:39 +02:00
|
|
|
const resampleConfig = {{ .Resampling }};
|
2021-12-08 15:50:03 +01:00
|
|
|
</script>
|
|
|
|
<script src='/build/jobs.js'></script>
|
|
|
|
{{end}}
|