{{ columNames }}
{% set count = start+1 %}
{% for player in playerList %}
{% if count % 2 == 0 %}
{{ player.getLineHTML(count) }}
{% else %}
{{ player.getLineHTML(count) }}
{% endif %}
{% set count = count + 1 %}
{% endfor %}
{{ endOfBoardIndicator }}