* Start of a basic Catalyst web interface.

This commit is contained in:
Eelco Dolstra
2008-10-28 10:19:31 +00:00
parent c181fc8703
commit b250fa6094
21 changed files with 928 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
[% WRAPPER layout.tt title="Hydra Overview" %]
[% USE date %]
<h1>All builds</h1>
<table>
<tr><th>Id</th><th>Attribute name</th><th>Timestamp</th><th>Description</th></tr>
[% FOREACH build IN builds -%]
<tr>
<td><a href="[% c.uri_for('/build' build.id) %]">[% build.id %]</a></td>
<td>[% build.name %]</td>
<td>[% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
<td>[% build.description %]</td>
</tr>
[% END -%]
</table>
[% END %]