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

14 lines
358 B
HTML

<!--needs to be given charId, parentId and type-->
<template name="attackEditList">
{{#if attacks.count}}
<hr style="margin: 16px 0 16px 0;">
<div id="attacks">
<h2>Attacks</h2>
{{#each attacks}}
{{>attackEdit}}
{{/each}}
</div>
{{/if}}
<paper-button id="addAttackButton" class="red-button" raised>Add Attack</paper-button>
</template>