16 lines
394 B
Handlebars
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> |