42 lines
1.7 KiB
HTML
42 lines
1.7 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.item as |item id|}}
|
|
{{#ifCond item.type '==' 'advantage'}}
|
|
{{> 'systems/l5r5e/templates/items/item/item-entry.html' item=item id=id }}
|
|
{{/ifCond}}
|
|
{{/each}}
|
|
</ul>
|
|
</fieldset>
|
|
</li>
|
|
<li>
|
|
<fieldset>
|
|
<legend class="text-block-header">{{ localize 'l5r5e.social.disadvantages' }}</legend>
|
|
<ul class="item-list">
|
|
{{#each actor.item as |item id|}}
|
|
{{#ifCond item.type '==' 'disadvantage'}}
|
|
{{> 'systems/l5r5e/templates/items/item/item-entry.html' item=item id=id }}
|
|
{{/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> |