mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-09-22 00:04:31 +02:00
.github
api
cmd
configs
docs
init
internal
pkg
test
tools
web
frontend
templates
monitoring
analysis.tmpl
job.tmpl
jobs.tmpl
list.tmpl
node.tmpl
status.tmpl
systems.tmpl
taglist.tmpl
user.tmpl
404.tmpl
base.tmpl
config.tmpl
home.tmpl
imprint.tmpl
login.tmpl
privacy.tmpl
web.go
.gitignore
LICENSE
Makefile
README.md
go.mod
go.sum
gqlgen.yml
startDemo.sh
tools.go
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}}
|