summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorGuy Pyrzak <guy.pyrzak@gmail.com>2010-09-19 01:12:11 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-09-19 01:12:11 +0200
commit4c2c197429347d82b4b3cc2d612a71a271d25fd6 (patch)
tree89a9ba3c9c1965b43c998f1783beeb0713d541c7 /template
parente2306b2956ad719082dbfac89d58aadacb5240f6 (diff)
downloadbugzilla-4c2c197429347d82b4b3cc2d612a71a271d25fd6.tar.gz
bugzilla-4c2c197429347d82b4b3cc2d612a71a271d25fd6.tar.xz
Bug 136225: Make summary a link in buglists
r/a=mkanat
Diffstat (limited to 'template')
-rw-r--r--template/en/default/list/table.html.tmpl5
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 %]