* Store info about the build inputs in the build record.
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
|
||||
<h1>Build [% id %]</h1>
|
||||
|
||||
|
||||
<h2>Information</h2>
|
||||
|
||||
<table>
|
||||
@ -51,6 +52,24 @@
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Build inputs</h2>
|
||||
|
||||
<table class="tablesorter">
|
||||
<thead>
|
||||
<tr><th>Name</th><th>type</th><th>Uri</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
[% FOREACH input IN build.buildinputs -%]
|
||||
<tr>
|
||||
<td>[% input.name %]</td>
|
||||
<td>[% input.type %]</td>
|
||||
<td>[% input.uri %]</td>
|
||||
</tr>
|
||||
[% END -%]
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Build products</h2>
|
||||
|
||||
<ul>
|
||||
|
Reference in New Issue
Block a user