blob: eaaaad2da9b8a9aa3a3b5364329aeb218e482704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<#include "macros.ftl" >
<!-- HISTORY -->
<#if (releases!?size > 0)>
<p></p>
<h2>All Releases</h2>
<table class="table">
<tbody>
<!-- RELEASE HISTORY -->
<#list releases?sort_by("date")?reverse as log>
<tr id="${log.id}">
<td style="width:100px" id="${log.id}">
<b><a href="#${log.id}">${log.id}</a></b><br/>
${log.date?string("yyyy-MM-dd")}
</td>
<td><@LogDescriptionMacro log=log /></td>
</tr>
</#list>
</tbody>
</table>
</#if>
|