hydra/src/HydraFrontend/root/index.tt

25 lines
565 B
Plaintext
Raw Normal View History

[% WRAPPER layout.tt title="Hydra Overview" %]
[% USE date %]
2008-10-28 12:44:36 +00:00
<h1>Job status</h1>
<table>
<tr><th></th><th>Id</th><th>Attribute name</th><th>Timestamp</th><th>Description</th></tr>
[% FOREACH build IN latestBuilds -%]
[% INCLUDE "short-build-info.tt" %]
[% END -%]
</table>
<h1>All builds</h1>
2008-10-28 12:44:36 +00:00
<p>Number of builds: [% allBuilds.size %]</p>
<table>
2008-10-28 10:32:31 +00:00
<tr><th></th><th>Id</th><th>Attribute name</th><th>Timestamp</th><th>Description</th></tr>
2008-10-28 12:44:36 +00:00
[% FOREACH build IN allBuilds -%]
[% INCLUDE "short-build-info.tt" %]
[% END -%]
</table>
[% END %]