2008-10-28 10:19:31 +00:00
|
|
|
[% WRAPPER layout.tt title="Hydra Overview" %]
|
|
|
|
|
2008-10-28 12:44:36 +00:00
|
|
|
<h1>Job status</h1>
|
|
|
|
|
2008-10-28 17:08:29 +00:00
|
|
|
<p>Below are the latest builds for each job.</p>
|
|
|
|
|
2008-10-28 15:34:29 +00:00
|
|
|
<table class="tablesorter">
|
|
|
|
<thead>
|
2008-11-05 03:25:48 +00:00
|
|
|
<tr><th></th><th>#</th><th>Project</th><th>Job</th><th>Timestamp</th><th>Description</th></tr>
|
2008-10-28 15:34:29 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH build IN latestBuilds -%]
|
|
|
|
[% INCLUDE "short-build-info.tt" %]
|
|
|
|
[% END -%]
|
|
|
|
</tbody>
|
2008-10-28 12:44:36 +00:00
|
|
|
</table>
|
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<h1>All builds</h1>
|
|
|
|
|
2008-10-28 12:44:36 +00:00
|
|
|
<p>Number of builds: [% allBuilds.size %]</p>
|
|
|
|
|
2008-10-28 15:34:29 +00:00
|
|
|
<table class="tablesorter">
|
|
|
|
<thead>
|
2008-11-05 03:25:48 +00:00
|
|
|
<tr><th></th><th>#</th><th>Project</th><th>Job</th><th>Timestamp</th><th>Description</th></tr>
|
2008-10-28 15:34:29 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH build IN allBuilds -%]
|
|
|
|
[% INCLUDE "short-build-info.tt" %]
|
|
|
|
[% END -%]
|
|
|
|
</tbody>
|
2008-10-28 10:19:31 +00:00
|
|
|
</table>
|
|
|
|
|
|
|
|
[% END %]
|