Files
fvtt-hamalron/templates/personnage-biographie.hbs
T
2026-07-10 16:58:33 +02:00

93 lines
2.3 KiB
Handlebars

<section
class="tab character-{{tab.id}} {{tab.cssClass}}"
data-tab="{{tab.id}}"
data-group="{{tab.group}}"
>
<div class="main-div">
<fieldset>
<legend>{{localize "HAMALRON.Label.progression"}}</legend>
<div class="progression">
<input
type="number"
name="system.progression"
value="{{system.progression}}"
{{#if isPlayMode}}disabled{{/if}}
/>
</div>
</fieldset>
<fieldset>
<legend>{{localize "HAMALRON.Label.biodata"}}</legend>
<div class="biodata">
{{formField
systemFields.biodata.fields.gender
value=system.biodata.gender
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.age
value=system.biodata.age
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.height
value=system.biodata.height
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.weight
value=system.biodata.weight
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.eyes
value=system.biodata.eyes
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.hair
value=system.biodata.hair
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.home
value=system.biodata.home
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.birthplace
value=system.biodata.birthplace
rootId=partId
disabled=isPlayMode
}}
{{formField
systemFields.biodata.fields.origineSociale
value=system.biodata.origineSociale
rootId=partId
disabled=isPlayMode
}}
</div>
</fieldset>
<fieldset>
<legend>{{localize "HAMALRON.Label.historial"}}</legend>
{{formInput
systemFields.historial
enriched=enrichedHistorial
value=system.historial
name="system.historial"
toggled=true
}}
</fieldset>
</div>
</section>