debian-koji/www/kojiweb/buildrootinfo_cg.chtml
2022-02-07 09:36:59 +01:00

47 lines
1.7 KiB
Text

#import koji
#from kojiweb import util
#from pprint import pformat
#include "includes/header.chtml"
<h4>Information for external buildroot <a href="buildrootinfo?buildrootID=$buildroot.id">$util.brLabel($buildroot)</a></h4>
<table>
<tr>
<th>ID</th><td>$buildroot.id</td>
</tr>
<tr>
<th>Host OS</th><td>$util.escapeHTML($buildroot.host_os)</td>
</tr>
<tr>
<th>Host Arch</th><td>$util.escapeHTML($buildroot.host_arch)</td>
</tr>
<tr>
<th>Content Generator</th><td>$util.escapeHTML($buildroot.cg_name) ($buildroot.cg_version)</td>
</tr>
<tr>
<th>Container Type</th><td>$util.escapeHTML($buildroot.container_type)</td>
</tr>
<tr>
<th>Container Arch</th><td>$util.escapeHTML($buildroot.container_arch)</td>
</tr>
#if $buildroot.get('extra')
<tr>
<th>Extra</th><td class="usertext">$util.escapeHTML($pformat($buildroot.extra))</td>
</tr>
#end if
<tr>
<th colspan="2"><a href="rpmlist?buildrootID=$buildroot.id&amp;type=component" title="RPMs that are installed into this buildroot when building packages">Component RPMs</a></th>
</tr>
<tr>
<th colspan="2"><a href="rpmlist?buildrootID=$buildroot.id&amp;type=built" title="RPMs that have been built in this buildroot">Built RPMs</a></th>
</tr>
<tr>
<th colspan="2"><a href="archivelist?buildrootID=$buildroot.id&type=component" title="Archives that are installed into this buildroot when building packages">Component Archives</a></th>
</tr>
<tr>
<th colspan="2"><a href="archivelist?buildrootID=$buildroot.id&type=built" title="Archives that have been built in this buildroot">Built Archives</a></th>
</tr>
</table>
#include "includes/footer.chtml"