morffix/tmpl/stats.tmpl
speatzle cee5353b54
All checks were successful
/ release (push) Successful in 30s
make -1 all
2024-10-08 12:44:23 +02:00

15 lines
526 B
Cheetah

{{template "head"}}
<h2>Stats</h2>
<label for="library">Library:</label>
<select id="library" name="library" onchange="setLibrary(this.value)" class="short-button">
<option {{if eq .SelectedLibrary -1 }} selected {{end}}value="-1">ALL</option>
{{range $l := .Libraries}}
<option {{if eq .SelectedLibrary $l.ID }} selected {{end}}value="{{$l.ID}}">{{$l.Name}}</option>
{{end}}
</select>
<div class="stats">
{{range $c := .Charts}}
{{$c.Element}} {{$c.Script}}
{{end}}
</div>
{{template "tail"}}