Using Asana2Go, I want to print a list of My Tasks that is grouped by Project. I’m creating a custom report for this, but don’t know what properties I need to use for the grouping and getting the names of the groups. I currently have this:
<div class="container">
<div class="row">
<div class="col">
{{#eachSortGroup tasks sortProperty='created_at' sortDescending=false groupProperty='project.name'}}
{{#tasks}}
<h1>{{project.name}}</h1>
<div class="row">
<div class="col">
{{name}}
<ul>
{{#subtasks}}
<li>{{name}}</li>
{{/subtasks}}
</ul>
</div>
</div>
{{/tasks}}
{{/eachSortGroup}}
</div>
</div>
</div>
But this gives no output. I think because the project.name in MyTasks is ‘my tasks’ and not the Group name.