23 lines
671 B
Handlebars
23 lines
671 B
Handlebars
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{localize "ITEM.TypeKampfkunst"}}</th>
|
|
<th>{{localize "midgard5.ew"}}</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each data.calc.kampfkuenste as |item itemId|}}
|
|
<tr data-item="{{itemId}}">
|
|
<td class="padding edit-item">
|
|
<span>{{item.label}}</span>
|
|
<span class="spell-process">{{localize item.process}}</span>
|
|
</td>
|
|
<td class="fixed-value">{{item.calc.ew}}</td>
|
|
<td class="fixed-value"><button class="roll-button roll-weapon-button" /></td>
|
|
<td class="fixed-value"><a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table> |