18 lines
831 B
HTML
18 lines
831 B
HTML
<div class="invocations-wrapper">
|
|
{{#each data.splitInvocationsList as |list type|}}
|
|
<fieldset class="section-header flexrow">
|
|
<legend class="technique-controls">
|
|
<span>{{localize (concat 'chiaroscuro.technique.invocation_types.' type)}}</span>
|
|
{{#if ../data.editable_not_soft_locked}}
|
|
<a data-item-type="technique" class="technique-control item-add" data-tech-type="mot_invocation" title="{{localize 'l5r5e.global.add'}}"><i class="fas fa-plus"></i></a>
|
|
{{/if}}
|
|
</legend>
|
|
<ul class="item-list">
|
|
{{#each list as |item|}}
|
|
{{> 'systems/l5r5e/templates/items/technique/technique-entry.html' technique=item editable=../../data.editable_not_soft_locked}}
|
|
{{/each}}
|
|
</ul>
|
|
</fieldset>
|
|
{{/each}}
|
|
</div>
|