System development, WIP

This commit is contained in:
2026-05-05 13:55:42 +02:00
commit c0223977d2
250 changed files with 10362 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<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>{{lookup @root.config.featureChoices system.featureId}}</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>