X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=templates%2Fen_US%2Fcgi%2Fbugreport_buginfo.tmpl;h=9b6c4fd93ba23923e31e850643e74d3140a39961;hb=032d7b12d982e192228b968e25e2f362bec1fa2f;hp=6bd16e084676beab2ba0be041c06a7768552f7cc;hpb=46fa42780ecb746d7bec2fb01190b05584b9283e;p=debbugs.git diff --git a/templates/en_US/cgi/bugreport_buginfo.tmpl b/templates/en_US/cgi/bugreport_buginfo.tmpl index 6bd16e0..9b6c4fd 100644 --- a/templates/en_US/cgi/bugreport_buginfo.tmpl +++ b/templates/en_US/cgi/bugreport_buginfo.tmpl @@ -59,4 +59,21 @@ $output .= q(

Bug is archived. No further changes may be made.

) } $output +}{ my $output = ''; + if (length($status{forwarded})) { + $output = "

Forwarded to " . + join(', ', + map {maybelink($_)} + split /\,\s+/,$status{forwarded} + )."

\n"; + } + $output; +}{ my $output = ''; + if (exists $status{summary} and defined $status{summary} and length $status{summary}) { + $output .= q(

Summary: ).html_escape($status{summary}).q(

); + } + if (exists $status{outlook} and defined $status{outlook} and length $status{outlook}) { + $output .= q(

Outlook: ).html_escape($status{outlook}).q(

); + } + $output; }