Commit e5f4c8dd authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 420862: Show abbreviated content in bug lists fully in tooltips - Patch by…

Bug 420862: Show abbreviated content in bug lists fully in tooltips - Patch by Mikhail Gusarov <dottedmag@altlinux.org> r/a=LpSolit
parent cffa99f0
......@@ -188,6 +188,16 @@
[% FOREACH column = displaycolumns %]
<td [% 'style="white-space: nowrap"' IF NOT abbrev.$column.wrap %]>
[% IF abbrev.$column.maxlength %]
<span title="
[%- IF column == 'bug_status' %]
[%- get_status(bug.$column) FILTER html %]
[% ELSIF column == 'resolution' %]
[%- get_resolution(bug.$column) FILTER html %]
[% ELSE %]
[%- bug.$column FILTER html %]
[% END %]">
[% END %]
[% IF abbrev.$column.format_value %]
[%- bug.$column FILTER format(abbrev.$column.format_value) FILTER html -%]
[% ELSIF column == 'actual_time' ||
......@@ -201,6 +211,9 @@
[% ELSE %]
[%- bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%]
[% END %]
[% IF abbrev.$column.maxlength %]
</span>
[% END %]
</td>
[% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment