Get the basic listing of attributes for the tab

This commit is contained in:
Oliver 2026-04-25 15:31:24 -06:00
parent c2b2376699
commit 7b127069b7
6 changed files with 95 additions and 19 deletions

View file

@ -3,5 +3,18 @@
data-group="primary"
data-tab="attributes"
>
Attribute Tab
{{#each attrGroups as |group|}}
<section>
<div class="embedded-list-header">
<h3 class="grow">
{{ group.name }}
</h3>
</div>
<ul class="embedded-list">
{{#each group.attrs as |attr|}}
{{> (systemFilePath "templates/PlayerSheet/tabs/attributes/attribute.hbs") attr }}
{{/each}}
</ul>
</section>
{{/each}}
</div>