fvtt-hawkmoon-cyd/templates/item-talent-sheet.html

52 lines
1.9 KiB
HTML
Raw Normal View History

2022-10-24 17:37:49 +02:00
<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-hawkmoon-cyd/templates/partial-item-nav.html}}
{{!-- Sheet Body --}}
<section class="sheet-body">
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-description.html}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
2022-10-24 18:36:18 +02:00
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
2022-10-24 18:36:18 +02:00
<label class="generic-label item-field-label-long">Utilisation </label>
<select class="status-small-label color-class-common item-field-label-long" type="text"
name="system.utilisation" value="{{system.utilisation}}" data-dtype="String">
2022-10-24 17:37:49 +02:00
{{#select system.utilisation}}
<option value="permanent">Permanent</option>
<option value="sceance">Une fois par scéance</option>
<option value="scenario">Une fois par scénario</option>
<option value="jour">Une fois par jour</option>
<option value="unique">Unique</option>
{{/select}}
</select>
</li>
2022-10-24 18:36:18 +02:00
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
<label class="generic-label item-field-label-long">Apporte un bonus ? </label>
<input type="checkbox" name="system.isbonus" {{checked system.isbonus}} />
</li>
{{#if system.isbonus}}
2022-10-24 18:36:18 +02:00
<li class="flexrow item">
<label class="generic-label item-field-label-long">Formule de bonus </label>
</li>
<li class="flexrow item">
<textarea rows="3" type="text" class="padd-right color-class-common"
data-dtype="String">{{predilection.bonusformula}}</textarea>
</li>
2022-10-24 17:37:49 +02:00
{{/if}}
</ul>
</div>
</section>
</form>