> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On
> Behalf Of Florian Berger
> 
> Hi,
> 
> in our trac 1.0.9-Wiki, I would like to have a page listing the open /
> accepted, assigned tickets per user:
> 
>     User1    9 tickets assigned
>     User2   32 tickets assigned
>     User3    1 tickets assigned
> 
> Is there a (sort of) straightforward way to automatically fetch and
> display such counters in vanilla trac, i.e. via a macro?
> 
> If not, are there any extensions which could help out?
> 
> Thanks a lot,
> 
>     Florian

Further to Jun's reply, you can make this more personal (my tickets) and useful 
(link to a custom query).  I use the following on some home pages:-

I have created [[TicketQuery(reporter=$USER,count)]] ticket(s):
{{{
#!div style="font-size: 80%"
[[TicketQuery(max=8,reporter=$USER,order=priority,status!=closed)]]
}}}
I own [[TicketQuery(owner=$USER,count)]] ticket(s):
{{{
#!div style="font-size: 80%"
[[TicketQuery(max=8,owner=$USER,order=priority,status!=closed)]]
}}}

...or this in a milestone's description:-

[query:milestone=<name>&group=status View all tickets] 
([[TicketQuery(milestone=<name>,status!=ready_to_test|testing|closed,count)]] 
open and [[TicketQuery(milestone=<name>,status=ready_to_test|testing,count)]] 
in test).
{{{
#!div style="font-size: 80%"
[[TicketQuery(max=10,milestone=<name>,order=priority,status!=closed)]]
}}}

~ Mark C

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to