In case it helps anyone with a similar issue, I will post my own HTML block using the each iterator
HTML Code:
<h3>Tasks</h3> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <thead> <tr> <th style="font-weight:bold;">Task Name</th> <th style="font-weight:bold;">Status</th> <th style="font-weight:bold;">Priority</th> </tr> </thead> <tbody> {{#each tasks}} <tr> <td>{{name}}</td> <td>{{status}}</td> <td>{{priority}}</td> </tr> {{/each}} </tbody> </table>

Leave a comment: