11 lines
272 B
HTML
11 lines
272 B
HTML
<template name="proficiencyViewList">
|
|
{{#if proficiencies.count}}
|
|
<hr class="vertMargin">
|
|
<div class="proficiencies">
|
|
<h2 style="margin-bottom: 8px;">Proficiencies</h2>
|
|
{{#each proficiencies}}
|
|
{{> proficiencyView}}
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</template> |