hydra/src/root/release.tt

30 lines
648 B
Plaintext
Raw Normal View History

2013-02-20 14:54:33 +00:00
[% WRAPPER layout.tt title="Release $release.name" %]
2009-10-23 12:42:50 +00:00
[% PROCESS common.tt %]
[% PROCESS "product-list.tt" %]
2009-10-23 12:42:50 +00:00
[% USE HTML %]
<p><em>Released on [% INCLUDE renderDateTime timestamp =
2013-02-20 14:54:33 +00:00
release.timestamp %].</em> <a class="btn" href="[% c.uri_for('/release' project.name release.name "edit") %]"><i class="icon-edit"></i></a></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 %]
<h3>
<a href="[% c.uri_for('/build' m.build.id) %]">
[% HTML.escape(m.description) %]
</a>
</h3>
[% INCLUDE renderProductList build=m.build %]
[% END %]
[% END %]
2009-10-23 12:42:50 +00:00
[% END %]