mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-01-24 02:19:05 +01:00
20 lines
674 B
Cheetah
20 lines
674 B
Cheetah
{{define "content"}}
|
|
<div id="svelte-app"></div>
|
|
{{end}}
|
|
|
|
{{define "stylesheets"}}
|
|
<link rel='stylesheet' href='/build/config.css'>
|
|
{{end}}
|
|
{{define "javascript"}}
|
|
<script>
|
|
const isAdmin = {{ .User.HasRole .Roles.admin }};
|
|
const isSupport = {{ .User.HasRole .Roles.support }};
|
|
const isApi = {{ .User.HasRole .Roles.api }};
|
|
const username = {{ .User.Username }};
|
|
const filterPresets = {{ .FilterPresets }};
|
|
const clusterCockpitConfig = {{ .Config }};
|
|
const resampleConfig = {{ .Resampling }};
|
|
const ncontent = {{ .Infos.ncontent }};
|
|
</script>
|
|
<script src='/build/config.js'></script>
|
|
{{end}} |