Paul Martin
2016-04-30 a502d96a860456ec5e8c96761db70f7cabb74751
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>