Display Number of Open Tasks on My Projects Page

Tagged:  

On the 'My Projects' page, I would like to display the open task lists and number of open tasks under each task list but am not sure how to do that. I've done a few tweaks to other areas but am stumped. I've tried searching through the forums with no luck.

Basically I would like to see this:

Project_name .............................................................. Priority#
project description
tasklistname#1 - #of open tasks (preferably ones assigned to me or anybody)
tasklistname#2 - #of open tasks
...
tastlistname#6 - #of open tasks

Repeat for each project on my projects page

Not too hard. Fastest solution is to edit application/views/dashboard/my_projects.php.

Before the line containing if (is_array($project_companies = $project->getCompanies())) { insert new code along these lines (pseudocode):

tasklist = project->getOpenTaksLists
foreach tasklist
print tasklist->name + ' #' . count(tasklist->getOpenTasks)
next

Do you think you can code it?

I'll add it to my to do list but I have a few high priority projects on my plate. But I get the gist of what to do now.

Thanks!