j3rem1e
2014-03-27 e4b0ae020290abfff26ef8b8f35485d277e4da62
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>