You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

releasehistory.ftl 465B

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