Add the most basic form of the Art Browser that just lets users see and filter the tokens

This commit is contained in:
Oliver 2026-01-23 21:20:09 -07:00
parent 82ba07414c
commit 547816701d
9 changed files with 412 additions and 0 deletions

View 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>