32 lines
1.4 KiB
Handlebars
32 lines
1.4 KiB
Handlebars
<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>
|