Add the most basic form of the Art Browser that just lets users see and filter the tokens
This commit is contained in:
parent
82ba07414c
commit
547816701d
9 changed files with 412 additions and 0 deletions
34
templates/ArtBrowser/sidebar.hbs
Normal file
34
templates/ArtBrowser/sidebar.hbs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<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}}-tags">
|
||||
Tags
|
||||
</label>
|
||||
<string-tags
|
||||
id="{{meta.idp}}-tags"
|
||||
value="{{tags}}"
|
||||
name="tags"
|
||||
></string-tags>
|
||||
|
||||
<hr>
|
||||
|
||||
<label for="{{meta.idp}}-artists">
|
||||
Artists
|
||||
</label>
|
||||
<multi-select
|
||||
id="{{meta.idp}}-artists"
|
||||
name="artists"
|
||||
>
|
||||
{{ tb-options artists artistList }}
|
||||
</multi-select>
|
||||
</form>
|
||||
Loading…
Add table
Add a link
Reference in a new issue