katla
July 10, 2020, 4:07pm
#1
Hi
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.
Application version: 1.2.15
PHP version: 7.4.5
PHP SAPI: apache2handler
HTTP Client: cURL
OS version: Linux 5.7.0-1-amd64
Database driver: sqlite
Database version: 3.32.3
thanks
Dear team,
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
Anybody to help? I have been trying since 3 weeks already and do not come further…