diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-09 21:56:56 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-09 21:56:56 +0100 |
commit | 5bb3d3fb55bc19823a55c0e48322021a5c556394 (patch) | |
tree | 41b8a33080ead49f6632f4c8c5c71c017f9df757 /template/en/default/bug | |
parent | 0c449e2d96804f6e48d3812b42ccf407fbbeb747 (diff) | |
parent | ed87a68c9fa5c099c79f45bb6f3ab95e42f14002 (diff) | |
download | bugzilla-5bb3d3fb55bc19823a55c0e48322021a5c556394.tar.gz bugzilla-5bb3d3fb55bc19823a55c0e48322021a5c556394.tar.xz |
merge with bugzilla/4.2
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/show-multiple.html.tmpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl index 03ce294c5..7b9c201e6 100644 --- a/template/en/default/bug/show-multiple.html.tmpl +++ b/template/en/default/bug/show-multiple.html.tmpl @@ -173,6 +173,18 @@ </tr> [% END %] + [% IF bug.see_also.size %] + <tr> + <th>[% field_descs.see_also FILTER html %]:</th> + <td colspan="3"> + [% FOREACH see_also = bug.see_also %] + <a href="[% see_also.name FILTER html %]">[% see_also.name FILTER html %]</a> + [% "<br>" IF not loop.last() %] + [% END %] + </td> + </tr> + [% END %] + [% IF Param("usestatuswhiteboard") %] [% PROCESS row cell = "status_whiteboard" fullrow = 1 %] [% END %] |