17 lines
420 B
HTML
17 lines
420 B
HTML
<!--needs to be given charId, parentId and parentCollection-->
|
|
<template name="proficiencyEditList">
|
|
{{#if proficiencies.count}}
|
|
<div id="proficiencies">
|
|
<div class="paper-font-title">Proficiencies</div>
|
|
{{#each proficiencies}}
|
|
{{>proficiencyEdit}}
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
<paper-button id="addProficiencyButton"
|
|
class="red-button"
|
|
raised>
|
|
Add Proficiency
|
|
</paper-button>
|
|
</template>
|