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 @@
# Gervase Markham <gerv@gerv.net>
#%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/field-descs.none.tmpl" %]
[% PROCESS global/header.html.tmpl
title = "Full Text $terms.Bug Listing"
......@@ -78,8 +78,10 @@
<tr>
[% PROCESS cell attr = { description => "OS/Version",
name => "op_sys" } %]
[% PROCESS cell attr = { description => "Status",
name => "bug_status" } %]
<td>
<b>Status:</b>&nbsp;
[% status_descs.${bug.bug_status} FILTER html %]
</td>
[% PROCESS cell attr = { description => "Severity",
name => "bug_severity" } %]
[% PROCESS cell attr = { description => "Priority",
......@@ -87,8 +89,10 @@
</tr>
<tr>
[% PROCESS cell attr = { description => "Resolution",
name => "resolution" } %]
<td>
<b>Resolution:</b>&nbsp;
[% resolution_descs.${bug.resolution} FILTER html %]
</td>
<td>
<b>Assigned To:</b>&nbsp;
[% 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