21 lines
566 B
Handlebars
21 lines
566 B
Handlebars
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="title">{{localize "TYPES.Item.effect"}}</th>
|
|
<th class="title"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each data.calc.gear.effects as |item itemId|}}
|
|
<tr data-item="{{itemId}}">
|
|
<td class="padding">
|
|
<span class="edit-item">{{item.label}}</span>
|
|
{{#if item.equipped}}
|
|
<span class="spell-process">{{localize "midgard5.active"}}</span>
|
|
{{/if}}
|
|
</td>
|
|
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table> |