]> git.donarmstrong.com Git - debbugs.git/blobdiff - templates/en_US/cgi/bugreport_buginfo.tmpl
output outlook in bugreport
[debbugs.git] / templates / en_US / cgi / bugreport_buginfo.tmpl
index 2e9b1825b7b68410a1f78818756c982735b6a1f1..9b6c4fd93ba23923e31e850643e74d3140a39961 100644 (file)
      $output .= q(<p>Bug is archived. No further changes may be made.<p>)
   }
   $output
+}{ my $output = '';
+ if (length($status{forwarded})) {
+    $output = "<p>Forwarded to " . 
+              join(', ',
+                  map {maybelink($_)}
+                   split /\,\s+/,$status{forwarded}
+                 )."</p>\n";
+ }
+ $output;
 }{ my $output = '';
   if (exists $status{summary} and defined $status{summary} and length $status{summary}) {
      $output .= q(<p>Summary: ).html_escape($status{summary}).q(</p>);
   }
+  if (exists $status{outlook} and defined $status{outlook} and length $status{outlook}) {
+     $output .= q(<p>Outlook: ).html_escape($status{outlook}).q(</p>);
+  }
   $output;
 }</div>