Get items appearing on the sheet, still a lot to do but this is a strong step in the right direction
This commit is contained in:
parent
6b03d62234
commit
23a402f11a
9 changed files with 254 additions and 10 deletions
|
|
@ -3,5 +3,23 @@
|
|||
data-group="primary"
|
||||
data-tab="items"
|
||||
>
|
||||
Item Tab Content Here
|
||||
Total Weight: {{totalWeight}}
|
||||
<hr>
|
||||
{{#each itemGroups as | group |}}
|
||||
<section>
|
||||
<div class="header">
|
||||
<span class="name">
|
||||
{{ group.name }}
|
||||
</span>
|
||||
<span class="weight">
|
||||
{{ group.weight }}
|
||||
</span>
|
||||
</div>
|
||||
<ul class="item-list">
|
||||
{{#each group.items as |item|}}
|
||||
{{> (systemFilePath "templates/PlayerSheet/item.hbs") item }}
|
||||
{{/each}}
|
||||
</ul>
|
||||
</section>
|
||||
{{/each}}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue