20 lines
941 B
Handlebars
20 lines
941 B
Handlebars
<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>
|