You would need to make a macro. Might want to check if there is one on trac-hacks already that can render a report or something.
--Noah > -----Original Message----- > From: [email protected] [mailto:[email protected]] > On Behalf Of Michael > Sent: Monday, June 15, 2009 11:11 AM > To: Trac Users > Subject: [Trac] Ticket Status Table > > > Hello, > > I'm looking to see if it is possible to put together a table showing > the status of tickets in my Trac instance. This table would contain > counts of currently open tickets, with the columns signifying > components and the rows signifying priorities. > > The logical way to do this is construct an HTML table, with embedded > TracQuery 's in it. However, I can't seem to do this - is there an > easier/better way? > > For instance, this DOES NOT work, but you can probably see what I'm > trying to do: > > {{{ > #!html > <table> > <tr> > <td>Tickets</td> > <td>High</td> > <td>Medium</td> > <td>Low</td> > </tr> > <tr> > <td>Component 1</td> > }}} > [TracQuery(status=open,component=comp1,priority=high, count)] > {{{ > #!html > </td><td> > }}} > [TracQuery(status=open,component=comp1,priority=medium, count)] > {{{ > #!html > </td><td> > }}} > [TracQuery(status=open,component=comp1,priority=low, count)] > {{{ > #!html > </td><td> > </tr> > <tr> > <td>Component 1</td> > }}} > [TracQuery(status=open,component=comp1,priority=high, count)] > {{{ > #!html > </td><td> > }}} > [TracQuery(status=open,component=comp1,priority=medium, count)] > {{{ > #!html > </td><td> > }}} > [TracQuery(status=open,component=comp1,priority=low, count)] > {{{ > #!html > </td><td> > </tr> > }}} > > ...and so on... you can see what I'm aiming for. Any thoughts? > > Thanks, > Michael > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
