19 lines
460 B
Handlebars
19 lines
460 B
Handlebars
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{localize "ITEM.TypeWeapon"}}</th>
|
|
<th>{{localize "midgard5.ew"}}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each data.calc.gear.weapons as |weapon itemId|}}
|
|
<tr data-item="{{itemId}}">
|
|
<td class="padding edit-item">{{weapon.label}}</td>
|
|
<td class="center">{{weapon.calc.ew}}</td>
|
|
<td><button class="roll-weapon-button">{{localize "midgard5.roll"}}</button></td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|