2022-09-18 13:31:15 +02:00
|
|
|
<div class="items-grid-container">
|
2022-08-29 12:22:04 +02:00
|
|
|
|
|
|
|
<!-- LOCALIZE THE LAST STRINGS IN THIS PAGE. ALSO SKILLS AND SKILL CATEGORIES-->
|
2022-09-18 13:31:15 +02:00
|
|
|
<div class="items-grid-heading">{{ localize "rmss.pc_sheet_items.item_name" }}</div>
|
|
|
|
<div class="items-grid-heading">{{ localize "rmss.pc_sheet_items.quantity" }}</div>
|
|
|
|
<div class="items-grid-heading">{{ localize "rmss.pc_sheet_items.weight" }}</div>
|
|
|
|
<div class="items-grid-heading">{{ localize "rmss.pc_sheet_items.cost" }}</div>
|
|
|
|
<div class="items-grid-heading">
|
2022-08-29 12:22:04 +02:00
|
|
|
<a class="item-control item-create" title="Create Item" data-type="item"><i class="fas fa-plus"></i>{{ localize "rmss.pc_sheet_items.add_item" }}</a>
|
2022-09-18 13:31:15 +02:00
|
|
|
</div>
|
2022-08-29 12:22:04 +02:00
|
|
|
{{#each gear as |item id|}}
|
2022-09-18 13:31:15 +02:00
|
|
|
<div>{{item.name}}</div>
|
|
|
|
<div>{{item.system.quantity}}</div>
|
|
|
|
<div>{{item.system.weight}}</div>
|
|
|
|
<div>{{item.system.cost}}</div>
|
|
|
|
<div>
|
|
|
|
<a class="item-control item-edit" title="Edit Item" data-item-id="{{item._id}}"><i class="fas fa-edit"></i></a>
|
|
|
|
<a class="item-control item-delete" title="Delete Item" data-item-id="{{item._id}}"><i class="fas fa-trash"></i></a>
|
|
|
|
</div>
|
2022-08-29 12:22:04 +02:00
|
|
|
{{/each}}
|
2022-09-18 13:31:15 +02:00
|
|
|
</div>
|