Create a list object in Supermodel
Useful when you want to create a subset of values, for instance when needing to filter output and then do something with it.
<list:empty name="listName"/>
<sm:forEach field="items" var="_item">
<list:add list="${listName}" value="${_item}"/>
</sm:forEach>