]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 136225: Make summary a link in buglists
authorGuy Pyrzak <guy.pyrzak@gmail.com>
Sat, 18 Sep 2010 23:12:11 +0000 (01:12 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Sat, 18 Sep 2010 23:12:11 +0000 (01:12 +0200)
r/a=mkanat

template/en/default/list/table.html.tmpl

index b8a32984adab6bc189ce8ac37227751510d37744..3fb6874157a72cda367353ae450a78a68d38c9ab 100644 (file)
         [% 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 %]