Ticket #97 (enhancement)

Opened 3 years ago

Last modified 1 year ago

Smarter sidebar

Status: new

Reported by: nic Assigned to: nic
Priority: normal Milestone: 2.0
Component: Coding Version: 1.03beta
Severity: normal Keywords:
Cc:

Add the following to one to the appropiate model after releasing 1.04.

select p.name, p.id, COUNT(t.project_id) AS count FROM projects p, todos t 
WHERE t.project_id IS NOT NULL AND t.done=0 
AND p.done = '0' AND p.id = t.project_id GROUP BY p.id;

Consider moving the sidebar management into a seperate controller. This might allow us to set up some clever OSX/dashboard widgets or small popups.

Select the above for a list of projects by:

  p.id IN #{projectids.join(",")}

Change History

10/08/07 07:22:00: Modified by lrbalt

  • milestone changed from Version 1.10 to 2.0.

11/13/07 15:44:08: Modified by lrbalt

  • type changed from defect to enhancement.