Files
ProxmoxAAS-Dashboard/web/templates/resource-chart.go.tmpl

43 lines
986 B
Cheetah

{{define "resource-chart"}}
<resource-chart>
<template shadowrootmode="open">
<link rel="stylesheet" href="modules/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css">
<style>
* {
box-sizing: border-box;
font-family: monospace;
}
#container{
margin: 0;
width: 100%;
height: fit-content;
padding: 10px 10px 10px 10px;
border-radius: 5px;
}
progress {
width: 100%;
border: 0;
height: 1em;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
#caption {
text-align: center;
margin-top: 10px;
display: flex;
flex-direction: column;
}
</style>
<div id="container">
<progress value="{{.Used}}" max="{{.Max}}"></progress>
<p id="caption">
<span>{{.Name}}</span>
<span>{{printf "%g" .Avail}} {{.Prefix}}{{.Unit}} Avaliable</span>
</p>
</div>
</template>
</resource-chart>
{{end}}-