Paolo
Paolo

Reputation: 21136

Show active tickets in Trac wiki home page

in my trac installation I'm looking for a way to show Active tickets in a section of the homepage. How could I do this?

Thanks

Upvotes: 1

Views: 550

Answers (2)

wimh
wimh

Reputation: 15232

I think the TicketQuery Macro does what you want. For example add the following to the wiki page to get all open tickets sorted by ticket#:

[[TicketQuery(status=new|assigned|reopened|accepted&order=id)]]

Upvotes: 5

stderr
stderr

Reputation: 8732

I think you'd want to look into writing a trac plugin. There's an example on Trac Hacks that seems like it might be a good starting point for what you're looking to do: Watchlist Plugin

Upvotes: 1

Related Questions