Alfred Schmid
2014-02-03 03c0191b65c68dc6be3da0e0056bcb3cbc6e9cef
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>