Files
fvtt-adventures-with-emmy/templates/character-biography.hbs
T
2026-03-05 22:50:53 +01:00

50 lines
1.6 KiB
Handlebars

<section class="tab character-biography {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}">
<fieldset>
<legend>{{localize "AWEMMY.Character.Identity"}}</legend>
<div class="form-group">
<label>{{localize "AWEMMY.Character.Pronouns"}}</label>
{{formInput systemFields.pronouns value=system.pronouns disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Character.Field"}}</label>
{{formInput systemFields.fieldName value=system.fieldName disabled=isPlayMode}}
</div>
<div class="form-group">
<label>{{localize "AWEMMY.Character.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>{{localize "AWEMMY.Character.Description"}}</legend>
{{formInput
systemFields.description
enriched=enrichedDescription
value=system.description
name="system.description"
toggled=true
}}
</fieldset>
<fieldset>
<legend>{{localize "AWEMMY.Character.Notes"}}</legend>
{{formInput
systemFields.notes
enriched=enrichedNotes
value=system.notes
name="system.notes"
toggled=true
}}
</fieldset>
</section>