diff options
author | lpsolit%gmail.com <> | 2006-01-03 05:45:31 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-01-03 05:45:31 +0100 |
commit | 1874993b3189dc1a1057c11433dfe16470cf8fae (patch) | |
tree | e250a403587acb801706b0f9f074925c75036316 /template/en/default | |
parent | 5f4feeeaf9d42587e27d300ad0cec099097d8ed1 (diff) | |
download | bugzilla-1874993b3189dc1a1057c11433dfe16470cf8fae.tar.gz bugzilla-1874993b3189dc1a1057c11433dfe16470cf8fae.tar.xz |
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
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/show-multiple.html.tmpl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl index caacad766..c1eb27c75 100644 --- a/template/en/default/bug/show-multiple.html.tmpl +++ b/template/en/default/bug/show-multiple.html.tmpl @@ -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> + [% 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> + [% resolution_descs.${bug.resolution} FILTER html %] + </td> <td> <b>Assigned To:</b> [% bug.assigned_to.login FILTER html %] |