Fiche armes et traits

This commit is contained in:
2023-04-28 15:25:57 +02:00
parent b9978545d2
commit 06d91f11f1
24 changed files with 233 additions and 138 deletions

View File

@@ -0,0 +1,18 @@
<li class="flexrow">
<label class="item-field-label-long">{{localize "ECRY.ui.weight"}}</label>
<input type="text" class="item-field-label-short" name="system.weight" value="{{system.weight}}"
data-dtype="Number" />
</li>
<li class="flexrow">
<label class="item-field-label-long">{{localize "ECRY.ui.cost"}}</label>
<input type="text" class="item-field-label-short" name="system.cost" value="{{system.cost}}" data-dtype="Number" />
<select class="item-field-label-medium" type="text" name="system.costunit" value="{{system.costunit}}" data-dtype="Number">
{{#select system.costunit}}
{{#each config.costUnits as |unit key| }}
<option value="{{key}}">{{localize unit.name}}</option>
{{/each}}
{{/select}}
</select>
</li>