hydra/src/root/release.tt

33 lines
687 B
Plaintext
Raw Normal View History

2009-10-23 12:42:50 +00:00
[% WRAPPER layout.tt title="Release $release.name" %]
[% PROCESS common.tt %]
[% PROCESS "product-list.tt" %]
2009-10-23 12:42:50 +00:00
[% USE HTML %]
<h1>Release <tt>[% release.name %]</tt> <a
class="smallLink" href="[% c.uri_for('/release' project.name release.name "edit") %]">[Edit]</a></h1>
<p><em>Released on [% INCLUDE renderDateTime timestamp =
release.timestamp %].</em></p>
2009-11-04 17:17:44 +00:00
[% IF !members %]
<p><em>No builds have been added to this release yet.</em></p>
[% ELSE %]
2009-11-04 17:17:44 +00:00
[% FOREACH m IN members %]
<h2>
<a href="[% c.uri_for('/build' m.build.id) %]">
[% HTML.escape(m.description) %]
</a>
</h2>
[% INCLUDE renderProductList build=m.build %]
[% END %]
[% END %]
2009-10-23 12:42:50 +00:00
[% END %]