foundry-vtt-system-midgard5/templates/sheets/character/effects.hbs

16 lines
394 B
Handlebars

<table>
<thead>
<tr>
<th>{{localize "TYPES.Item.effect"}}</th>
<th></th>
</tr>
</thead>
<tbody>
{{#each data.calc.gear.effects as |item itemId|}}
<tr data-item="{{itemId}}">
<td class="padding edit-item">{{item.label}}</td>
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
</tr>
{{/each}}
</tbody>
</table>