Files
DiceCloud/rpg-docs/client/views/character/effects/effectsEditList/effectsEditList.html
2015-03-09 14:03:11 +00:00

13 lines
359 B
HTML

<!--needs to be given charId, sourceId 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>