Helma 2 Templates - freemarker sample
(please finish)
<table>
<#list param.topics as topic>
<tr class="topic">Hi
<td>
<#assign count = topic.comments.count() - 1>
<#if count != 0>
<#if count = 1>
1 Comment
<#else>
${ count } Comments
</#if>
</#if>
</td>
</tr>
</#list>
</table>