Files
DiceCloud/rpg-docs/client/views/character/proficiencies/proficiencyEditList/proficiencyEditList.html
2017-01-23 15:08:19 +02:00

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>