15 lines
526 B
Cheetah
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"}}
|