diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-01-06 11:55:36 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-01-06 11:55:36 +0100 |
commit | 8233b76bb3940899857cc4c18b892b30fb65d10e (patch) | |
tree | 425bcbe7bf0209e54b79545d962760de0d847617 /template | |
parent | 0be3316a92152f7a37184eed9b0b589013be4431 (diff) | |
download | bugzilla-8233b76bb3940899857cc4c18b892b30fb65d10e.tar.gz bugzilla-8233b76bb3940899857cc4c18b892b30fb65d10e.tar.xz |
Bug 695294: The See Also field is not visible in "Format for Printing"
r/a=LpSolit
Diffstat (limited to 'template')
-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 33dde14a3..7c2b5345e 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 %] |