<div {{addAttr containerAttributes}}>
    <table class="table {{tableClass}}">
        <thead>
        <tr>
            {{include headerTemplate columns}}
        </tr>
        </thead>
        <tbody>
        {{#each rows as |row index|}}
            <tr adhara-datum-row="{{index}}">
                {{#if ../selectionMode}}<td>{{include ../selectorTemplate ../this}}</td>{{/if}}
                <td adhara-datum-col="{{index}}-{{column}}">
                    {{include ../itemTemplate row}}
                </td>
            </tr>
        {{/each}}
        </tbody>
    </table>
</div>