mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
19 lines
460 B
Cheetah
19 lines
460 B
Cheetah
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/job.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const jobInfos = {
|
|
id: "{{ .Infos.id }}",
|
|
jobId: "{{ .Infos.jobId }}",
|
|
clusterId: "{{ .Infos.clusterId }}"
|
|
};
|
|
const clusterCockpitConfig = {{ .Config }};
|
|
</script>
|
|
<script src='/build/job.js'></script>
|
|
{{end}}
|