Added a simple ViewMode for a character's levelup progression (#997)

This commit is contained in:
WBHarry 2025-08-18 03:59:57 +02:00 committed by GitHub
parent 5cd5de31aa
commit f69e5704e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 143 additions and 6 deletions

View file

@ -0,0 +1,24 @@
<div class="section-container">
<div class="tiers-container">
{{#each this.tiers as |tier key|}}
<fieldset class="tier-container">
<legend>{{tier.name}}</legend>
{{#each tier.groups}}
<div class="checkbox-group-container">
<div class="checkboxes-container">
{{#each this.checkboxGroups}}
<div class="checkbox-grouping-coontainer {{#if this.multi}}multi{{/if}}">
{{#each this.checkboxes}}
<input type="checkbox" class="selection-checkbox{{#if (gt this.cost 1)}} multi{{/if}}" {{checked this.selected}} disabled />
{{/each}}
</div>
{{/each}}
</div>
<span class="checkbox-group-label">{{this.label}}</span>
</div>
{{/each}}
</fieldset>
{{/each}}
</div>
</div>