49 lines
1.7 KiB
Handlebars
49 lines
1.7 KiB
Handlebars
|
<form class="{{cssClass}}" autocomplete="off">
|
||
|
<header class="sheet-header">
|
||
|
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
||
|
<div class="header-fields">
|
||
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
{{> systems/fvtt-te-deum/templates/items/partial-item-nav.hbs}}
|
||
|
|
||
|
|
||
|
{{!-- Sheet Body --}}
|
||
|
<section class="sheet-body">
|
||
|
|
||
|
{{> systems/fvtt-te-deum/templates/items/partial-item-description.hbs}}
|
||
|
|
||
|
<div class="tab details" data-group="primary" data-tab="details">
|
||
|
|
||
|
<div class="tab" data-group="primary">
|
||
|
<ul>
|
||
|
<li class="flexrow">
|
||
|
<label class="item-name-label-long">Bonus 1</label>
|
||
|
<select name="system.bonus1">
|
||
|
{{selectOptions config.caracteristiques selected=system.bonus1 labelAttr="label" blank=""}}
|
||
|
</select>
|
||
|
</li>
|
||
|
|
||
|
<li class="flexrow">
|
||
|
<label class="item-name-label-long">Bonus 2</label>
|
||
|
<select name="system.bonus2">
|
||
|
{{selectOptions config.caracteristiques selected=system.bonus2 labelAttr="label" blank=""}}
|
||
|
</select>
|
||
|
</li>
|
||
|
|
||
|
<li class="flexrow">
|
||
|
<label class="item-name-label-long">Cagnotte</label>
|
||
|
<input type="text" class="padd-right numeric-input item-field-label-short"
|
||
|
name="system.cagnotte" value="{{system.cagnotte}}" data-dtype="Number" />
|
||
|
<select name="system.monnaie">
|
||
|
{{selectOptions config.monnaie selected=system.monnaie labelAttr="label" blank="denier"}}
|
||
|
</select>
|
||
|
</li>
|
||
|
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</section>
|
||
|
</form>
|