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

58 lines
2.4 KiB
HTML
Raw Permalink Normal View History

2022-10-24 17:37:49 +02:00
<form class="{{cssClass}}" autocomplete="off">
2022-11-14 15:27:19 +01:00
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html}}
2022-10-24 17:37:49 +02:00
{{> 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-26 12:12:30 +02:00
<li class="flexrow item">
<label class="generic-label item-field-label-medium">Type </label>
2022-10-28 21:44:49 +02:00
<select class="status-small-label color-class-common item-field-label-long" type="text"
2022-10-26 12:12:30 +02:00
name="system.talenttype" value="{{system.talenttype}}" data-dtype="String">
2024-05-05 18:06:29 +02:00
{{selectOptions config.optionsTypeTalent selected=system.talenttype valueAttr="key" nameAttr="key" labelAttr="label"}}
2022-10-26 12:12:30 +02:00
</select>
</li>
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
2022-10-25 17:54:13 +02:00
<label class="generic-label item-field-label-medium">Utilisation </label>
2022-10-28 21:44:49 +02:00
<select class="status-small-label color-class-common item-field-label-long" type="text"
2022-10-24 18:36:18 +02:00
name="system.utilisation" value="{{system.utilisation}}" data-dtype="String">
2024-05-05 18:06:29 +02:00
{{selectOptions config.optionsUseTalent selected=system.utilisation valueAttr="key" nameAttr="key" labelAttr="label"}}
2022-10-24 17:37:49 +02:00
</select>
</li>
2022-10-24 18:36:18 +02:00
2022-10-24 17:37:49 +02:00
<li class="flexrow item">
2022-10-26 12:12:30 +02:00
<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>
2022-10-25 17:54:13 +02:00
</li>
<li class="flexrow item">
2022-10-26 12:12:30 +02:00
<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"
2022-10-26 12:57:04 +02:00
name="system.resumebonus" data-dtype="String">{{system.resumebonus}}</textarea>
2022-10-24 17:37:49 +02:00
</li>
2022-10-24 18:36:18 +02:00
<li class="flexrow item">
2022-10-26 10:27:24 +02:00
<label class="generic-label item-field-label-medium">Déja utilisé ? </label>
<input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
2022-10-24 18:36:18 +02:00
</li>
2022-10-26 10:27:24 +02:00
{{> systems/fvtt-hawkmoon-cyd/templates/partial-automation.html}}
2022-10-24 17:37:49 +02:00
</ul>
</div>
</section>
</form>