Says, I have a variable @index, and I want to name all the checkboxes with suffix cb_${index}
<td>
<input type="checkbox" name="cb_$index" value="check" />
</td>
The above syntax didn't work at all. Is this even possible in Scala template or am I missing something here? Thanks.