2022-10-22 11:09:48 +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-23 09:55:02 +02:00
|
|
|
|
2022-10-23 21:26:18 +02:00
|
|
|
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html}}
|
|
|
|
|
2022-10-23 09:55:02 +02:00
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
2022-10-23 21:26:18 +02:00
|
|
|
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-description.html}}
|
2022-10-22 11:09:48 +02:00
|
|
|
|
2022-10-23 21:26:18 +02:00
|
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
|
|
<ul class="item-list alternate-list">
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Exemples : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<input type="text" class="padd-right status-small-label color-class-common" name="system.exemples"
|
|
|
|
value="{{system.exemples}}" data-dtype="String" />
|
|
|
|
</li>
|
|
|
|
<li class="flexrow items">
|
|
|
|
<label class="generic-label item-field-label-long">Attribut principal 1 </label>
|
|
|
|
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
|
|
|
name="system.attribut1" value="{{system.attribut1}}" data-dtype="string">
|
|
|
|
{{#select system.attribut1}}
|
|
|
|
{{#each attributs as |attrLabel attrKey|}}
|
|
|
|
<option value="{{attrKey}}">{{attrLabel}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item ">
|
|
|
|
<label class="generic-label item-field-label-long">Attribut principal 2 </label>
|
|
|
|
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
|
|
|
name="system.attribut2" value="{{system.attribut2}}" data-dtype="string">
|
|
|
|
<option value="none">Aucun</option>
|
|
|
|
{{#select system.attribut2}}
|
|
|
|
{{#each attributs as |attrLabel attrKey|}}
|
|
|
|
<option value="{{attrKey}}">{{attrLabel}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
2022-10-26 08:46:14 +02:00
|
|
|
<li class="flexrow item ">
|
|
|
|
<label class="generic-label item-field-label-long">Attribut principal 3 </label>
|
|
|
|
<select class="status-small-label color-class-common item-field-label-long"" type=" text"
|
|
|
|
name="system.attribut3" value="{{system.attribut3}}" data-dtype="string">
|
|
|
|
<option value="none">Aucun</option>
|
|
|
|
{{#select system.attribut3}}
|
|
|
|
{{#each attributs as |attrLabel attrKey|}}
|
|
|
|
<option value="{{attrKey}}">{{attrLabel}}</option>
|
|
|
|
{{/each}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Compétences exercées : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<textarea type="text" rows="3" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.compétences" data-dtype="String">{{system.compétences}}</textarea>
|
|
|
|
</li>
|
2022-10-23 09:55:02 +02:00
|
|
|
|
2022-10-23 21:26:18 +02:00
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Talents Initié : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
2022-10-24 17:34:04 +02:00
|
|
|
<textarea type="text" rows="3" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.talentsinitie" data-dtype="String">{{system.talentsinitie}}</textarea>
|
2022-10-23 21:26:18 +02:00
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Prérequis Aguerri : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
2022-10-24 17:34:04 +02:00
|
|
|
<textarea type="text" rows="3" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.prerequisaguerri" data-dtype="String">{{system.prerequisaguerri}}</textarea>
|
2022-10-23 21:26:18 +02:00
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Talents Aguerri : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
2022-10-24 17:34:04 +02:00
|
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.talentsaguerri" data-dtype="String">{{system.talentsaguerri}}</textarea>
|
2022-10-23 21:26:18 +02:00
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Prérequis Maître : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
2022-10-24 17:34:04 +02:00
|
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.prerequismaitre" data-dtype="String">{{system.prerequismaitre}}</textarea>
|
2022-10-23 21:26:18 +02:00
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Talents Maître : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
2022-10-24 17:34:04 +02:00
|
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.talentsmaitre" data-dtype="String">{{system.talentsmaitre}}</textarea>
|
2022-10-23 21:26:18 +02:00
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Equipement : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<input type="text" class="padd-right status-small-label color-class-common" name="system.equipement"
|
|
|
|
value="{{system.equipement}}" data-dtype="String" />
|
|
|
|
</li>
|
2022-10-24 17:34:04 +02:00
|
|
|
<li class="flexrow item">
|
|
|
|
<label class="generic-label">Contribution à la création de la cellule : </label>
|
|
|
|
</li>
|
|
|
|
<li class="flexrow item">
|
|
|
|
<textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
|
|
|
|
name="system.celluleinfo" data-dtype="String">{{system.celluleinfo}}</textarea>
|
|
|
|
</li>
|
|
|
|
|
2022-10-23 21:26:18 +02:00
|
|
|
</ul>
|
2022-10-22 11:09:48 +02:00
|
|
|
|
|
|
|
</div>
|
2022-10-23 09:55:02 +02:00
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|