I have code in scala template like:
@for(col <- List.range(0,12)) {
<td>
@if(col % 2 == 0) {
@{ val letter = someMap(col) }
<div class="z@(letter)@(letter)s"></div>
}
</td>
}
But I get compile error: value letter not found. How can I declare variables and be able to access later in the markup like above?
va, notval...