Want to print MyTasks grouped by Project

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.

@lpb I think you might know the answer to this?

Welcome, @crib, and thanks, @Danielle-GenD,

I’ve contacted you by DM, or you can reach out to me here:

https://www.trilogisoftware.com/contact

in order to keep the Asana Forum for Asana (not Asana2Go) support.

Thanks,

Larry

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.