fvtt-cthulhu-eternal/templates/protagonist-biography.hbs

27 lines
1.8 KiB
Handlebars
Raw Normal View History

2024-12-04 15:16:33 +01:00
<section class="tab protagonist-{{tab.id}} {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}">
2024-12-18 18:45:47 +01:00
<fieldset>
<legend>{{localize "CTHULHUETERNAL.Label.biodata"}}</legend>
2024-12-22 23:04:15 +01:00
<div class="biodata">
{{formField systemFields.biodata.fields.harshness value=system.biodata.harshness name="system.biodata.harshness" localize=true}}
{{formField systemFields.biodata.fields.age value=system.biodata.age name="system.biodata.age" localize=true classes="field-label"}}
{{formField systemFields.biodata.fields.gender value=system.biodata.gender name="system.biodata.gender" localize=true classes="field-label"}}
{{formField systemFields.biodata.fields.height value=system.biodata.height name="system.biodata.height" localize=true classes="field-label"}}
{{formField systemFields.biodata.fields.eyes value=system.biodata.eyes name="system.biodata.eyes" localize=true classes="field-label"}}
{{formField systemFields.biodata.fields.hair value=system.biodata.hair name="system.biodata.hair" localize=true classes="field-label"}}
2025-01-07 17:36:31 +01:00
{{formField systemFields.biodata.fields.home value=system.biodata.home name="system.biodata.home" localize=true classes="field-label"}}
2024-12-22 23:04:15 +01:00
{{formField systemFields.biodata.fields.birthplace value=system.biodata.birthplace name="system.biodata.birthplace" localize=true classes="field-label"}}
</div>
</fieldset>
2024-12-18 18:45:47 +01:00
2024-12-04 15:16:33 +01:00
<fieldset>
2024-12-16 09:04:48 +01:00
<legend>{{localize "CTHULHUETERNAL.Label.description"}}</legend>
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
2024-12-04 15:16:33 +01:00
</fieldset>
2024-12-22 23:04:15 +01:00
2024-12-04 15:16:33 +01:00
<fieldset>
2024-12-16 09:04:48 +01:00
<legend>{{localize "CTHULHUETERNAL.Label.notes"}}</legend>
{{formInput systemFields.notes enriched=enrichedNotes value=system.notes name="system.notes" toggled=true}}
2024-12-04 15:16:33 +01:00
</fieldset>
</section>