mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-24 14:42:11 -03:00
feat: implement alphabet filtering feature with letter counts and UI components v1
This commit is contained in:
19
templates/components/alphabet_bar.html
Normal file
19
templates/components/alphabet_bar.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<div class="alphabet-bar-section">
|
||||
<div class="alphabet-bar">
|
||||
<span class="alphabet-bar-title">Filter by:</span>
|
||||
<div class="letter-chip" data-letter="#" title="Numbers">
|
||||
#<span class="count"></span>
|
||||
</div>
|
||||
{% for letter in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" %}
|
||||
<div class="letter-chip" data-letter="{{ letter }}" title="{{ letter }}">
|
||||
{{ letter }}<span class="count"></span>
|
||||
</div>
|
||||
{% endfor %}
|
||||
<div class="letter-chip" data-letter="@" title="Special characters">
|
||||
@<span class="count"></span>
|
||||
</div>
|
||||
<div class="letter-chip" data-letter="漢" title="CJK characters">
|
||||
漢<span class="count"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user