/**
     * This page shows the status of tasks that are running
     * @param request The request from the end-user
     */

    public void showTasks(WebRequest request){ 
       // explain that no tasks are running right now
       String result = "404 - No tasks were found running"
       // write everything for the user to read
       request.setAnswer(result);
    }