mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-11-04 01:25:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			803 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			803 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "content"}}
 | 
						|
    <div id="svelte-app"></div>
 | 
						|
{{end}}
 | 
						|
 | 
						|
{{define "stylesheets"}}
 | 
						|
    <link rel='stylesheet' href='/build/jobs.css'>
 | 
						|
{{end}}
 | 
						|
{{define "javascript"}}
 | 
						|
    <script>
 | 
						|
        const filterPresets = {{ .FilterPresets }};
 | 
						|
        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/jobs.js'></script>
 | 
						|
{{end}}
 |