Is it possible to hide the finished subtasks in the general boards overview page (/?controller=DashboardController&action=show)?
I tried the settings - > project -> (untick) Include closed tasks in the cumulative flow diagram without much success not sure where else i could take a look at.
I would also like to create a DashboardController-View of the opened subtasks.
public function subtasks()
{
$user = $this->getUser();
$this->response->html($this->helper->layout->dashboard('dashboard/subtasks', array(
'title' => t('Subtasks overview for %s', $this->helper->user->getFullname($user)),
'paginator' => $this->subtaskPagination->getDashboardPaginator($user['id']),
'user' => $user,
'nb_subtasks' => $this->subtaskModel->countByAssigneeAndTaskStatus($user['id']),
)));
}
In the “dashboard/subtasks” view, if I filter on the “status:open”, it forwards me to the SearchController-View, which for me is less convenient.
How could I combine the two to add a “dashboard/subtasks” with opened-substasks only?
Thank you in advance for your help,
kind regards,
Barbara