mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
Added a simple ViewMode for a character's levelup progression (#997)
This commit is contained in:
parent
5cd5de31aa
commit
f69e5704e4
5 changed files with 143 additions and 6 deletions
24
templates/levelup/tabs/viewMode.hbs
Normal file
24
templates/levelup/tabs/viewMode.hbs
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue