For that you need to create your custom dashlet. Where you will fetch the tasks from all the users using webscript. With the help of workflow services APIS.
where you have these APIS like public List<WorkflowInstance> getActiveWorkflows(String workflowDefinitionId); public List<WorkflowTask> queryTasks(WorkflowTaskQuery query);
You can get all the active tasks inside repository. 😎