I have two collections.
1: Categories
2: Tasks
I can list the categories:
{{#each catlist}}
{{> catlisttemp}}
{{/each}}
<template name="catlisttemp">
{{category}}
</template>
But howto list all tasks under every category from the tasks collections that have parentId to the category?
Category
task
task
task
Category
task
task
…