morffix/tmpl/stats.tmpl
speatzle b6c22df6f1
All checks were successful
/ release (push) Successful in 31s
fix template
2024-10-08 12:36:03 +02:00

15 lines
524 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 "" }} selected {{end}}value="">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"}}