taf/templates/PlayerSheet/item-lists.hbs

34 lines
674 B
Handlebars

<div
class="tab {{ifThen tabActive "active" ""}}"
data-group="primary"
data-tab="items"
>
<section>
Total Weight: {{totalWeight}}
/
<input
type="number"
name="system.carryCapacity"
value="{{system.carryCapacity}}"
>
({{ carryCapacityPercent }}%)
</section>
{{#each itemGroups as | group |}}
<section>
<div class="item-list-header">
<div class="grow">
{{ group.name }}
</div>
<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>