使用TRAC 用于sprint的TicketQuery模板来显示正在发生的事情。当模板需要多个位置时,我如何仅在ONCE中键入当前sprint的名称?例如,“Sprint1”需要6个地方:
= New items = [[TicketQuery(milestone = Sprint1 ,status = new,format = table,order = priority,col = id | summary | priority | component | owner | type)]]
=正在进行的项目= [[TicketQuery(里程碑= Sprint1 ,状态= in_progress,格式=表格,订单=优先级,col = id |摘要|优先级|组件|所有者|类型)] ]
答案 0 :(得分:0)
也许这会做一些接近你想要的事情? (它将按状态值分组,因此您只需要1个查询而不是6个。)
[[TicketQuery(milestone=Sprint1,format=table,order=priority,col=id|summary|priority|component|owner|type,group=status)]]
至于定义这样的变量,不,没有办法做到这一点。