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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<div class="listing">
{{#items}}
<div class="buglisting-row">
<div class="buglisting-col1">
{{#show_importance}}
<div class="importance {{importance_class}}">
{{importance}}
</div>
{{/show_importance}}
{{#show_status}}
<div class="status {{status_class}}">
{{status}}
</div>
{{/show_status}}
</div>
<div class="buglisting-col2">
<div class="buginfo">
{{#show_id}}
<span class="bugnumber">#{{id}}</span>
{{/show_id}}
<a href="{{bug_url}}" class="bugtitle">{{title}}</a>
</div>
</div>
<div class="buglisting-col3">
{{#show_targetname}}
<span class="{{bugtarget_css}} field">
{{bugtarget}}
</span>
{{/show_targetname}}
{{#show_milestone_name}}
<span class="sprite milestone field">
{{#milestone_name}}
{{milestone_name}}
{{/milestone_name}}
{{^milestone_name}}
No milestone set
{{/milestone_name}}
</span>
{{/show_milestone_name}}
{{#show_date_last_updated}}
<span class="sprite milestone field">
Last updated {{last_updated}}
</span>
{{/show_date_last_updated}}
{{#show_assignee}}
<span class="sprite person field">
{{#assignee}}Assignee: {{assignee}}{{/assignee}}
{{^assignee}}Assignee: None{{/assignee}}
</span>
{{/show_assignee}}
{{#show_reporter}}
<span class="sprite person field">
Reporter: {{reporter}}
</span>
{{/show_reporter}}
{{#show_datecreated}}
<span class="sprite milestone field">
{{age}}
</span>
{{/show_datecreated}}
{{#show_tag}}
<span class="field">Tags:
{{^has_tags}}None{{/has_tags}}
{{#tags}}
<a href="{{url}}" class="tag">{{tag}}</a> 
{{/tags}}
</span>
{{/show_tag}}
{{#show_heat}}
<span class="bug-heat-icons">
{{{bug_heat_html}}}
</span>
{{/show_heat}}
<span class="bug-related-icons">
{{{badges}}}
</span>
</div>
</div>
{{/items}}
</div>
|