From 6e8df18fa39ccbb6080e0b2034b35d2e0bdaa4c9 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Fri, 27 May 2005 11:37:17 +0000 Subject: [PATCH] Bug 215346: Bug lists don't use mapped fields - Patch by Emmanuel Seyman r=myk,wurblzap a=myk git-svn-id: svn://10.0.0.236/trunk@173803 18797224-902f-48f8-a5cc-f745e15eee43 --- .../bugzilla/template/en/default/list/table.html.tmpl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mozilla/webtools/bugzilla/template/en/default/list/table.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/list/table.html.tmpl index 5cb781567eb..d3fe3231b05 100644 --- a/mozilla/webtools/bugzilla/template/en/default/list/table.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/list/table.html.tmpl @@ -183,6 +183,10 @@ column == 'remaining_time' || column == 'estimated_time' %] [% PROCESS formattimeunit time_unit=bug.$column %] + [% ELSIF column == 'bug_status' %] + [%- status_descs.${bug.$column}.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %] + [% ELSIF column == 'resolution' %] + [%- resolution_descs.${bug.$column}.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %] [% ELSE %] [%- bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%] [% END %]