diff options
author | 2005-05-27 18:37:17 +0000 | |
---|---|---|
committer | 2005-05-27 18:37:17 +0000 | |
commit | dcc141ae3ca05a266174ad1a89e5499ec8bc674b (patch) | |
tree | 1a08ce09033457fd513b870c52fea70d2d575feb | |
parent | Bug 286672: Require correct DBD depending on the $db_driver in use (diff) | |
download | bugzilla-dcc141ae3ca05a266174ad1a89e5499ec8bc674b.tar.gz bugzilla-dcc141ae3ca05a266174ad1a89e5499ec8bc674b.tar.bz2 bugzilla-dcc141ae3ca05a266174ad1a89e5499ec8bc674b.zip |
Bug 215346: Bug lists don't use mapped fields - Patch by Emmanuel Seyman <eseyman@linagora.com> r=myk,wurblzap a=myk
-rw-r--r-- | template/en/default/list/table.html.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 5cb781567..d3fe3231b 100644 --- a/template/en/default/list/table.html.tmpl +++ b/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 %] |