From: Don Armstrong Date: Fri, 11 Aug 2017 21:14:55 +0000 (-0700) Subject: include links to the PTS, buildd, and popcon in the bug report X-Git-Url: https://git.donarmstrong.com/debbugs.git/?a=commitdiff_plain;h=677df926c103cb0ceaeba0fa8252c80779e4d573;p=debbugs.git include links to the PTS, buildd, and popcon in the bug report --- diff --git a/templates/en_US/cgi/bugreport_pkginfo.tmpl b/templates/en_US/cgi/bugreport_pkginfo.tmpl index 777928e..c063588 100644 --- a/templates/en_US/cgi/bugreport_pkginfo.tmpl +++ b/templates/en_US/cgi/bugreport_pkginfo.tmpl @@ -11,7 +11,11 @@ package_links(maintainer => $package->{maintainer}).qq(; ); if (exists $package->{source} and not $package->{is_source}) { $output .= q(Source for ).package_links(package=>$package->{package}).qq( is ). - package_links(source => $package->{source}).qq(. ); + package_links(source => $package->{source}). + q{ (PTS, }. + q{buildd, }. + q{popcon)}. + qq(. ); } } $output;