42 lines
1.9 KiB
HTML
42 lines
1.9 KiB
HTML
<ul class="narrative-content">
|
|
<li>
|
|
<label class="attribute-label">{{ localize 'l5r5e.social.ninjo' }}</label>
|
|
<input type="text" name="data.social_standing.ninjo" value="{{data.social.ninjo}}"/>
|
|
</li>
|
|
<li>
|
|
<label class="attribute-label">{{ localize 'l5r5e.social.giri' }}</label>
|
|
<input type="text" name="data.social_standing.giri" value="{{data.social.giri}}"/>
|
|
</li>
|
|
<li>
|
|
<label class="attribute-label">{{ localize 'l5r5e.social.titles' }}</label>
|
|
<input type="text" name="data.social_standing.titles" value="{{data.social.titles}}"/>
|
|
</li>
|
|
<li>
|
|
<fieldset>
|
|
<legend class="text-block-header">{{ localize 'l5r5e.social.advantages' }}</legend>
|
|
<ul class="item-list">
|
|
{{#each actor.items as |item id|}}
|
|
{{#ifCond '["distinction","passion"]' 'includes' item.data.peculiarity_type}}
|
|
{{> 'systems/l5r5e/templates/items/peculiarity/peculiarity-entry.html' peculiarity=item id=id editable=../editable }}
|
|
{{/ifCond}}
|
|
{{/each}}
|
|
</ul>
|
|
</fieldset>
|
|
</li>
|
|
<li>
|
|
<fieldset>
|
|
<legend class="text-block-header">{{ localize 'l5r5e.social.disadvantages' }}</legend>
|
|
<ul class="item-list">
|
|
{{#each actor.items as |item id|}}
|
|
{{#ifCond '["adversity","anxiety"]' 'includes' item.data.peculiarity_type}}
|
|
{{> 'systems/l5r5e/templates/items/peculiarity/peculiarity-entry.html' peculiarity=item id=id editable=../editable }}
|
|
{{/ifCond}}
|
|
{{/each}}
|
|
</ul>
|
|
</fieldset>
|
|
</li>
|
|
</ul>
|
|
<fieldset>
|
|
<legend class="text-block-header">{{ localize 'l5r5e.notes' }}</legend>
|
|
{{ editor content=data.notes.value target="data.notes.value" button=true editable=editable }}
|
|
</fieldset> |