15 lines
672 B
Handlebars
15 lines
672 B
Handlebars
<div class="tab profile" data-group="primary" data-tab="profile">
|
|
<div class="grid grid-2col">
|
|
{{#each data.profile as |profile-data-value profile-data-key|}}
|
|
{{#if (ne profile-data-key 'biography')}}
|
|
<div class="profile-entry">
|
|
<label for="data.profile.{{profile-data-key}}">
|
|
{{lookup ../config.characterProfile profile-data-key}}
|
|
</label>
|
|
<input type="text" name="data.profile.{{profile-data-key}}" value="{{profile-data-value}}"
|
|
data-dtype="{{lookup ../config/characterProfileDTypes profile-data-key}}" />
|
|
</div>
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|