Files
fvtt-mournblade/templates/item-modifier-sheet.hbs

25 lines
1.1 KiB
Handlebars

<section class="{{cssClass}}" autocomplete="off">
{{> systems/fvtt-mournblade/templates/partial-item-header.hbs this}}
{{> systems/fvtt-mournblade/templates/partial-item-nav.hbs this}}
{{> systems/fvtt-mournblade/templates/partial-item-description.hbs this}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.modifiertype"}} : </label>
<select class="item-field-label-long1" type="text" name="system.modifiertype" value="{{system.modifiertype}}" data-dtype="string">
{{selectOptions config.modifierTypes selected=system.modifiertype labelAttr="name"}}
</select>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long">{{localize "MNBL.value"}} : </label>
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.value" value="{{system.value}}" data-dtype="Number" />
</li>
</ul>
</div>
</section>