mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 05:01:08 +01:00
38 lines
No EOL
1.5 KiB
Handlebars
38 lines
No EOL
1.5 KiB
Handlebars
<div>
|
|
<div class="tiers-container">
|
|
{{#each this.levelup.tiers as |tier key|}}
|
|
<fieldset class="tier-container">
|
|
<legend>{{tier.name}}</legend>
|
|
|
|
{{#each tier.tierCheckboxGroups}}
|
|
<div class="checkbox-group-container">
|
|
{{this.label}}
|
|
<div class="checkboxex-container">
|
|
{{#each this.checkboxes}}
|
|
<input type="checkbox" {{checked this.selected}} />
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
</fieldset>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- <div class="flex-col">
|
|
<div class="levelup-title-container">Level {{activeLevel}}</div>
|
|
<div class="levelup-section">
|
|
{{#each data}}
|
|
{{> "systems/daggerheart/templates/views/parts/level.hbs" data=this }}
|
|
{{/each}}
|
|
</div>
|
|
<footer>
|
|
|
|
{{#if (eq activeLevel changedLevel )}}
|
|
<button data-action="finishLevelup" {{#if (not completedSelection)}}disabled{{/if}}>{{localize "DAGGERHEART.Application.LevelUp.TakeLevelUp"}}</button>
|
|
{{else}}
|
|
<button data-action="advanceLevel" {{#if (not completedSelection)}}disabled{{/if}}>{{localize "DAGGERHEART.Application.LevelUp.AdvanceLevel" level=(add activeLevel 1)}}</button>
|
|
{{/if}}
|
|
<button data-action="close">{{localize "DAGGERHEART.Application.Cancel"}}</button>
|
|
</footer>
|
|
</div> --}} |