Files
DiceCloud/rpg-docs/client/views/character/effects/effectsViewList/effectsViewList.html
2015-04-16 09:47:13 +00:00

15 lines
310 B
HTML

<!--needs to be given charId, (parentId or stat) and type-->
<template name="effectsViewList">
{{#if effects.count}}
<hr style="margin: 16px 0 16px 0;">
<div class="effects">
<h2>Effects</h2>
<table>
{{#each effects}}
{{>effectView}}
{{/each}}
</table>
</div>
{{/if}}
</template>