Files
DiceCloud/app/client/views/character/proficiencies/proficiencyViewList/proficiencyViewList.html
2018-05-21 14:21:07 +02:00

13 lines
283 B
HTML

<template name="proficiencyViewList">
{{#if proficiencies.count}}
<div class="proficiencies">
<div class="paper-font-title" style="margin-bottom: 8px;">
Proficiencies
</div>
{{#each proficiencies}}
{{> proficiencyView}}
{{/each}}
</div>
{{/if}}
</template>