Commit 1874993b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 320960: When viewing bugs in the "Format for printing" (aka Long format),…

Bug 320960: When viewing bugs in the "Format for printing" (aka Long format), the bug status and resolution are not translated correctly - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
parent 5f4feeea
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
# Gervase Markham <gerv@gerv.net> # Gervase Markham <gerv@gerv.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %] [% PROCESS "global/field-descs.none.tmpl" %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Full Text $terms.Bug Listing" title = "Full Text $terms.Bug Listing"
...@@ -78,8 +78,10 @@ ...@@ -78,8 +78,10 @@
<tr> <tr>
[% PROCESS cell attr = { description => "OS/Version", [% PROCESS cell attr = { description => "OS/Version",
name => "op_sys" } %] name => "op_sys" } %]
[% PROCESS cell attr = { description => "Status", <td>
name => "bug_status" } %] <b>Status:</b>&nbsp;
[% status_descs.${bug.bug_status} FILTER html %]
</td>
[% PROCESS cell attr = { description => "Severity", [% PROCESS cell attr = { description => "Severity",
name => "bug_severity" } %] name => "bug_severity" } %]
[% PROCESS cell attr = { description => "Priority", [% PROCESS cell attr = { description => "Priority",
...@@ -87,8 +89,10 @@ ...@@ -87,8 +89,10 @@
</tr> </tr>
<tr> <tr>
[% PROCESS cell attr = { description => "Resolution", <td>
name => "resolution" } %] <b>Resolution:</b>&nbsp;
[% resolution_descs.${bug.resolution} FILTER html %]
</td>
<td> <td>
<b>Assigned To:</b>&nbsp; <b>Assigned To:</b>&nbsp;
[% bug.assigned_to.login FILTER html %] [% bug.assigned_to.login FILTER html %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment