Files
DiceCloud/rpg-docs/client/views/character/effects/effectsEditList/effectsEditList.html
2015-03-20 09:12:38 +00:00

13 lines
377 B
HTML

<!--needs to be given charId, parentId, parentCollection and type-->
<template name="effectsEditList">
{{#if effects.count}}
<hr style="margin: 16px 0 16px 0;">
<div id="effects">
<h2>Effects</h2>
{{#each effects}}
{{>effectEdit}}
{{/each}}
</div>
{{/if}}
<paper-button id="addEffectButton" class="red-button" raised>Add Effect</paper-button>
</template>