diff options
author | Guy Pyrzak <guy.pyrzak@gmail.com> | 2010-09-19 01:12:11 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-09-19 01:12:11 +0200 |
commit | 4c2c197429347d82b4b3cc2d612a71a271d25fd6 (patch) | |
tree | 89a9ba3c9c1965b43c998f1783beeb0713d541c7 /template/en/default/list | |
parent | e2306b2956ad719082dbfac89d58aadacb5240f6 (diff) | |
download | bugzilla-4c2c197429347d82b4b3cc2d612a71a271d25fd6.tar.gz bugzilla-4c2c197429347d82b4b3cc2d612a71a271d25fd6.tar.xz |
Bug 136225: Make summary a link in buglists
r/a=mkanat
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/table.html.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index b8a32984a..3fb687415 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -207,7 +207,10 @@ [% SET login_column = column.remove('_realname$') %] [% bug.${login_column}.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %] - + [% ELSIF column == 'short_desc' || column == "short_short_desc" %] + <a href="show_bug.cgi?id=[% bug.id FILTER html %]"> + [%- bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%] + </a> [% ELSE %] [%- display_value(column, bug.$column).truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%] [% END %] |