1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<table class="listing narrow-listing">
<tbody>
{{#bugtasks}}
<tr>
<td class={{importance_class}}>
{{importance}}
</td>
<td>
#{{id}} <a href="{{bug_url}}">{{title}}</a>
</td>
<td align="right">
{{{badges}}}{{{bug_heat_html}}}
</td>
</tr>
<tr >
<td class={{status_class}} style="border-style: none">
{{status}}
</td>
<td colspan="2" style="border-style: none">
<span class="{{bugtarget_css}}">{{bugtarget}}</span>
</td>
</tr>
{{/bugtasks}}
</tbody>
</table>
|