Files
fvtt-machine-gods-noxian-ex…/templates/character-features.hbs
T
2026-05-13 22:43:58 +02:00

18 lines
729 B
Handlebars

<section class="tab-panel {{tab.cssClass}}">
<div class="inventory-header">
<h3>{{localize "MGNE.ItemTypes.feature"}}</h3>
<button type="button" data-action="createItem" data-item-type="feature">{{localize "MGNE.Character.AddFeature"}}</button>
</div>
{{#each features}}
<div class="item-row" data-item-id="{{id}}">
<div class="item-name">{{name}}</div>
<div class="item-actions">
<button type="button" data-action="editItem">{{localize "MGNE.Common.Edit"}}</button>
<button type="button" data-action="deleteItem">{{localize "MGNE.Common.Delete"}}</button>
</div>
</div>
{{else}}
<p class="empty-state">{{localize "MGNE.Empty.NoFeatures"}}</p>
{{/each}}
</section>