~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/templates/buglisting.mustache

  • Committer: Aaron Bentley
  • Date: 2011-10-13 22:05:16 UTC
  • mto: (14128.9.2 new-bug-fields)
  • mto: This revision was merged to the branch mainline in revision 14193.
  • Revision ID: aaron@canonical.com-20111013220516-iyiu3cg6y8cqglaa
ReformatĀ bugĀ listings.

Show diffs side-by-side

added added

removed removed

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