Files
Foundry-VTT-Docker/resources/app/templates/apps/compendium-art-config.hbs

32 lines
1.4 KiB
Handlebars
Raw Permalink Normal View History

2025-01-04 00:34:03 +01:00
<section>
<ol class="priority-list">
{{#each config}}
<li data-package-id="{{ packageId }}">
<input type="hidden" name="{{ packageId }}.priority" value="{{ priority }}" data-dtype="Number">
<label>{{ title }}</label>
<div class="form-fields">
<label>
{{ localize "COMPENDIUM.ART.CONFIG.Portraits" }}
<input type="checkbox" name="{{ packageId }}.portraits" {{ checked portraits }}>
</label>
<label>
{{ localize "COMPENDIUM.ART.CONFIG.Tokens" }}
<input type="checkbox" name="{{ packageId }}.tokens" {{ checked tokens }}>
</label>
</div>
<div class="priority-adjust">
<button type="button" data-action="priority" data-increase
aria-label="{{ localize "COMPENDIUM.ART.CONFIG.PriorityIncrease" }}">
<i class="fas fa-angle-up"></i>
</button>
<button type="button" data-action="priority" data-decrease
aria-label="{{ localize "COMPENDIUM.ART.CONFIG.PriorityDecrease" }}">
<i class="fas fa-angle-down"></i>
</button>
</div>
</li>
{{/each}}
</ol>
<p class="hint">{{ localize "COMPENDIUM.ART.CONFIG.Hint" }}</p>
</section>