This commit is contained in:
parent
91e3504abe
commit
849b4cf004
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@
|
||||||
<label for="library">Library:</label>
|
<label for="library">Library:</label>
|
||||||
<select id="library" name="library" onchange="setLibrary(this.value)" class="short-button">
|
<select id="library" name="library" onchange="setLibrary(this.value)" class="short-button">
|
||||||
<option {{if eq .SelectedLibrary "-1" }} selected {{end}}value="-1">ALL</option>
|
<option {{if eq .SelectedLibrary "-1" }} selected {{end}}value="-1">ALL</option>
|
||||||
{{range $l := .Libraries}}
|
{{range $l := $.Libraries}}
|
||||||
<option {{if eq .SelectedLibrary $l.ID }} selected {{end}}value="{{$l.ID}}">{{$l.Name}}</option>
|
<option {{if eq $.SelectedLibrary $l.ID }} selected {{end}}value="{{$l.ID}}">{{$l.Name}}</option>
|
||||||
{{end}}
|
{{end}}
|
||||||
</select>
|
</select>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
|
|
Loading…
Add table
Reference in a new issue