46 lines
2.9 KiB
Handlebars
46 lines
2.9 KiB
Handlebars
<section class="tab protagonist-{{tab.id}} {{tab.cssClass}}" data-tab="{{tab.id}}" data-group="{{tab.group}}">
|
|
|
|
<fieldset>
|
|
<legend>{{localize "CTHULHUETERNAL.Label.biodata"}}</legend>
|
|
<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"}}
|
|
{{formField systemFields.biodata.fields.gender value=system.biodata.gender name="system.biodata.gender" localize=true classes="field-label"}}
|
|
{{formField systemFields.biodata.fields.birthplace value=system.biodata.birthplace name="system.biodata.birthplace" localize=true classes="field-label"}}
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "CTHULHUETERNAL.Label.motivations"}}{{#if isEditMode}}
|
|
<a class="action" data-tooltip="{{localize "CTHULHUETERNAL.Tooltip.addMotivation"}}" data-tooltip-direction="UP"><i class="fas fa-plus" data-action="createMotivation"></i></a>{{/if}}</legend>
|
|
<div class="motivations">
|
|
{{#each motivations as |item|}}
|
|
{{!log 'armor' this}}
|
|
<div class="motivation" data-item-id="{{item.id}}" data-item-uuid="{{item.uuid}}">
|
|
<img class="item-img" src="{{item.img}}" data-tooltip="{{item.name}}" />
|
|
<div class="name" data-tooltip="{{{item.system.description}}}">
|
|
{{item.name}}
|
|
</div>
|
|
<div class="controls">
|
|
<a data-tooltip="{{localize 'CTHULHUETERNAL.Edit'}}" data-action="edit" data-item-id="{{item.id}}" data-item-uuid="{{item.uuid}}"><i class="fas fa-edit"></i></a>
|
|
<a data-tooltip="{{localize 'CTHULHUETERNAL.Delete'}}" data-action="delete" data-item-id="{{item.id}}" data-item-uuid="{{item.uuid}}"><i class="fas fa-trash"></i></a>
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "CTHULHUETERNAL.Label.description"}}</legend>
|
|
{{formInput systemFields.description enriched=description value=system.description name="system.description" toggled=true}}
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "CTHULHUETERNAL.Label.notes"}}</legend>
|
|
{{formInput systemFields.notes enriched=notes value=system.notes name="system.notes" toggled=true}}
|
|
</fieldset>
|
|
</section> |