Files
vermine2047/templates/actor/appv2/npc-notes.hbs
T
2026-06-06 10:21:24 +02:00

23 lines
1015 B
Handlebars

<div class="tab notes sheet-part" data-group="sheet" data-tab="notes">
<h3>{{ localize 'IDENTITY.notes' }}</h3>
<div class="grid grid-1col">
<div class="form-group">
<label for="system.identity.profile">{{ localize 'IDENTITY.profile' }}</label>
{{#if isEditMode}}
<input type="text" name="system.identity.profile" value="{{system.identity.profile}}" data-dtype="String" placeholder="{{ localize 'PROFILE' }}"/>
{{else}}
<span>{{system.identity.profile}}</span>
{{/if}}
</div>
<div class="form-group">
<label for="system.identity.theme">{{ localize 'IDENTITY.theme' }}</label>
{{#if isEditMode}}
<input type="text" name="system.identity.theme" value="{{system.identity.theme}}" data-dtype="String" placeholder="{{ localize 'THEME' }}"/>
{{else}}
<span>{{system.identity.theme}}</span>
{{/if}}
</div>
</div>
{{editor system.identity.notes target="system.identity.notes" button=true owner=owner editable=editable}}
</div>