16 lines
583 B
Cheetah
16 lines
583 B
Cheetah
{{template "head"}}
|
|
<script src="/static/js/library_filter.js"></script>
|
|
<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"}}
|