Files
fvtt-adventures-with-emmy/templates/character-biography.hbs
T
2026-03-05 21:51:31 +01:00

50 lines
1.5 KiB
Handlebars

<section class="tab character-biography {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}">
<fieldset>
<legend>Identity</legend>
<div class="form-group">
<label>Pronouns</label>
{{formInput systemFields.pronouns value=system.pronouns disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Kit.Field"}}</label>
{{formInput systemFields.fieldName value=system.fieldName disabled=isPlayMode}}
</div>
<div class="form-group">
<label>Specialization</label>
{{formInput systemFields.specialization value=system.specialization disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Item.Archetype"}}</label>
{{formInput systemFields.archetypeName value=system.archetypeName disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Item.Background"}}</label>
{{formInput systemFields.backgroundName value=system.backgroundName disabled=isPlayMode}}
</div>
</fieldset>
<fieldset>
<legend>Description</legend>
{{formInput
systemFields.description
enriched=enrichedDescription
value=system.description
name="system.description"
toggled=true
}}
</fieldset>
<fieldset>
<legend>Notes</legend>
{{formInput
systemFields.notes
enriched=enrichedNotes
value=system.notes
name="system.notes"
toggled=true
}}
</fieldset>
</section>