24 lines
793 B
Handlebars
24 lines
793 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>
|
|
{{#unless (or (eq item.duration.unit "") (eq item.duration.unit "limitless"))}}
|
|
<span class="spell-process">{{item.duration.time}} {{localize (concat "midgard5.time-" item.duration.unit)}}</span>
|
|
{{/unless}}
|
|
{{/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> |