From bb4a8908e1a3f490c8cf2b58793be04f2c4a71b0 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 13 Jun 2011 20:03:44 -0700 Subject: [PATCH] Show group sizes in Maniphest task list view Summary: Show how many tasks are in each group. This number is useful when you are insufficiently depressed. Test Plan: Looked at maniphest task list. Reviewed By: toulouse Reviewers: aran, jungejason, tuomaspelkonen, toulouse CC: anjali, aran, toulouse Differential Revision: 457 --- .../controller/tasklist/ManiphestTaskListController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/applications/maniphest/controller/tasklist/ManiphestTaskListController.php b/src/applications/maniphest/controller/tasklist/ManiphestTaskListController.php index 70567184eb..1d0e5f2135 100644 --- a/src/applications/maniphest/controller/tasklist/ManiphestTaskListController.php +++ b/src/applications/maniphest/controller/tasklist/ManiphestTaskListController.php @@ -163,9 +163,10 @@ class ManiphestTaskListController extends ManiphestController { $task_list->setTasks($list); $task_list->setHandles($handles); + $count = number_format(count($list)); $nav->appendChild( '

'. - phutil_escape_html($group). + phutil_escape_html($group).' ('.$count.')'. '

'); $nav->appendChild($task_list); }