show extra data in web ui
This commit is contained in:
parent
e71ee4bad3
commit
a6b1981074
5 changed files with 25 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#import koji
|
||||
#from kojiweb import util
|
||||
#from pprint import pformat
|
||||
#import urllib
|
||||
|
||||
#attr _PASSTHROUGH = ['archiveID', 'fileOrder', 'fileStart', 'buildrootOrder', 'buildrootStart']
|
||||
|
|
@ -54,6 +55,11 @@
|
|||
<th>Buildroot</th><td><a href="buildrootinfo?buildrootID=$builtInRoot.id">$util.brLabel($builtInRoot)</a></td>
|
||||
</tr>
|
||||
#end if
|
||||
#if $archive.get('extra')
|
||||
<tr>
|
||||
<th>Extra</th><td class="usertext">$util.escapeHTML($pformat($archive.extra))</td>
|
||||
</tr>
|
||||
#end if
|
||||
#if $files
|
||||
<tr>
|
||||
<th id="filelist">Files</th>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<th>Task</th><td><a href="taskinfo?taskID=$task.id" class="task$util.taskState($task.state)">$koji.taskLabel($task)</a></td>
|
||||
</tr>
|
||||
#end if
|
||||
#if 'extra' in $build
|
||||
#if $build.get('extra')
|
||||
<tr>
|
||||
<th>Extra</th><td class="usertext">$util.escapeHTML($pformat($build.extra))</td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#import koji
|
||||
#from kojiweb import util
|
||||
#from pprint import pformat
|
||||
|
||||
#include "includes/header.chtml"
|
||||
|
||||
|
|
@ -39,6 +40,11 @@
|
|||
<tr>
|
||||
<th>Repo Created</th><td>$util.formatTimeLong($buildroot.repo_create_event_time)</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&type=component" title="RPMs that are installed into this buildroot when building packages">Component RPMs</a></th>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#import koji
|
||||
#from kojiweb import util
|
||||
#from pprint import pformat
|
||||
|
||||
#include "includes/header.chtml"
|
||||
|
||||
|
|
@ -24,6 +25,11 @@
|
|||
<tr>
|
||||
<th>Container Arch</th><td>$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&type=component" title="RPMs that are installed into this buildroot when building packages">Component RPMs</a></th>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#import koji
|
||||
#from kojiweb import util
|
||||
#from pprint import pformat
|
||||
#import time
|
||||
#import urllib
|
||||
|
||||
|
|
@ -68,6 +69,11 @@
|
|||
<th>Buildroot</th><td><a href="buildrootinfo?buildrootID=$builtInRoot.id">$util.brLabel($builtInRoot)</a></td>
|
||||
</tr>
|
||||
#end if
|
||||
#if $rpm.get('extra')
|
||||
<tr>
|
||||
<th>Extra</th><td class="usertext">$util.escapeHTML($pformat($rpm.extra))</td>
|
||||
</tr>
|
||||
#end if
|
||||
#if $rpm.external_repo_id == 0
|
||||
<tr>
|
||||
<th>Provides</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue