Files
l5rx-chiaroscuro/system/templates/sheets/actor/feats.html
Mandar a0a99eb08c Add Templates Html + Gulp Sass + Css + Basic Tree and Files
- Add Templates Html
- Gulp Sass
- Css
- Basic Tree and Files
2020-12-04 23:23:04 +01:00

15 lines
546 B
HTML

<div class="feats-wrapper">
<div class="section-header flexrow">
<h4 style="margin: 0; font-weight: bold;">{{ localize 'L5r5e.Feats' }}</h4>
<div class="feat-controls">
<a class="feat-control feat-add" title="Add Item"><i class="fas fa-plus"></i></a>
</div>
</div>
<ul class="item-list">
{{#each actor.items as |item id|}}
{{#if item.isFeat }}
{{> 'systems/l5r5e/templates/item/feat-entry.html' feat=item }}
{{/if}}
{{/each}}
</ul>
</div>