Create the most basic version of the ArtistBrowser app
This commit is contained in:
parent
1c32a71db9
commit
d5a114a44a
9 changed files with 348 additions and 1 deletions
18
templates/ArtistBrowser/sidebar.hbs
Normal file
18
templates/ArtistBrowser/sidebar.hbs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<form autocomplete="off" class="filters">
|
||||
<label for="{{meta.idp}}-name">Name</label>
|
||||
<input
|
||||
id="{{meta.idp}}-name"
|
||||
type="text"
|
||||
name="name"
|
||||
value="{{name}}"
|
||||
>
|
||||
|
||||
<hr>
|
||||
|
||||
<label for="{{meta.idp}}-sort">
|
||||
Sort By
|
||||
</label>
|
||||
<select name="sortBy" id="{{meta.idp}}-sort">
|
||||
{{it-options sortBy sortOptions localize=true}}
|
||||
</select>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue