* A quick (non-Web 2.0) interface to manually add builds to a release.

This commit is contained in:
Eelco Dolstra
2009-10-23 15:57:18 +00:00
parent a515c5fef2
commit 7e81fbd56a
5 changed files with 67 additions and 8 deletions

View File

@ -1,10 +1,32 @@
[% WRAPPER layout.tt title="Release $release.name" %]
[% PROCESS common.tt %]
[% PROCESS "product-list.tt" %]
[% 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>
<p><em>Released on [% INCLUDE renderDateTime timestamp =
release.timestamp %].</em></p>
[% IF !release.releasemembers %]
<p><em>No builds have been added to this release yet.</em></p>
[% ELSE %]
[% FOREACH m IN release.releasemembers %]
<h2>
<a href="[% c.uri_for('/build' m.build.id) %]">
[% HTML.escape(m.description) %]
</a>
</h2>
[% INCLUDE renderProductList build=m.build latestRoot=['/view!!!' project.name view.name 'latest' j.job.job] %]
[% END %]
[% END %]
[% END %]