Migration vers datamodels
This commit is contained in:
19
templates/items/item-equipment-details.hbs
Normal file
19
templates/items/item-equipment-details.hbs
Normal file
@@ -0,0 +1,19 @@
|
||||
<section class="tab sheet-body {{tab.cssClass}}" data-tab="details" data-group="primary">
|
||||
<ul>
|
||||
<li class="flexrow">
|
||||
<label class="item-field-label-long">{{localize "ECRY.ui.quantity"}}</label>
|
||||
<input type="number" class="item-field-label-short" name="system.quantity" value="{{system.quantity}}" />
|
||||
</li>
|
||||
<li class="flexrow">
|
||||
<label class="item-field-label-long">{{localize "ECRY.ui.weight"}}</label>
|
||||
<input type="number" class="item-field-label-short" name="system.weight" value="{{system.weight}}" />
|
||||
</li>
|
||||
<li class="flexrow">
|
||||
<label class="item-field-label-long">{{localize "ECRY.ui.cost"}}</label>
|
||||
<input type="number" class="item-field-label-short" name="system.cost" value="{{system.cost}}" />
|
||||
<select name="system.costunit">
|
||||
{{selectOptions config.costUnits selected=system.costunit localize=true labelAttr="name"}}
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
Reference in New Issue
Block a user