58 lines
2.4 KiB
HTML
58 lines
2.4 KiB
HTML
<form class="{{cssClass}}" autocomplete="off">
|
|
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html}}
|
|
|
|
{{> 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">
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-medium">Type </label>
|
|
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
|
name="system.talenttype" value="{{system.talenttype}}" data-dtype="String">
|
|
{{selectOptions config.optionsTypeTalent selected=system.talenttype valueAttr="key" nameAttr="key" labelAttr="label"}}
|
|
</select>
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-medium">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">
|
|
{{selectOptions config.optionsUseTalent selected=system.utilisation valueAttr="key" nameAttr="key" labelAttr="label"}}
|
|
</select>
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long">Pré-requis </label>
|
|
</li>
|
|
<li class="flexrow item">
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
name="system.prerequis" data-dtype="String">{{system.prerequis}}</textarea>
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-long">Résumé (si bonus) </label>
|
|
</li>
|
|
<li class="flexrow item">
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
name="system.resumebonus" data-dtype="String">{{system.resumebonus}}</textarea>
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
<label class="generic-label item-field-label-medium">Déja utilisé ? </label>
|
|
<input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
|
|
</li>
|
|
|
|
{{> systems/fvtt-hawkmoon-cyd/templates/partial-automation.html}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</section>
|
|
</form> |