* Store info about the build inputs in the build record.

This commit is contained in:
Eelco Dolstra
2008-11-05 06:23:41 +00:00
parent a970603ad1
commit 0ea294e77e
11 changed files with 114 additions and 19 deletions

View File

@ -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>