You know, right, that you can create reports yourself? If
you are handy with SQL. Look at setup.sql at the lines
starting with "insert into reports".
In psuedo sql, something like
select project,
sum(case when status desc = "open" then 1 else 0 end) [open
bugs],
sum (case when status desc = "closed" then 1 else 0 end)
[closed bugs]
from bugs
inner join projects....
inner join statuses...
group by project
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=645778
You know, right, that you can create reports yourself? If
you are handy with SQL. Look at setup.sql at the lines
starting with "insert into reports".
In psuedo sql, something like
select project,
sum(case when status desc = "open" then 1 else 0 end) [open
bugs],
sum (case when status desc = "closed" then 1 else 0 end)
[closed bugs]
from bugs
inner join projects....
inner join statuses...
group by project
Logged In: YES
user_id=676271
i do, but i just thought this would be a nice one to include
as a default one