```<#list statement.lines as line> <#if...
# accounting
m
Copy code
<#list statement.lines as line>
  <#if ! line.description == "Opening Balance">
    <tr>
    	<#-- output the line here -->
    </tr>
  </#if>
</#list>