{{#ember-wormhole to=(concat tableId "_inline_foot") renderInPlace=renderInPlace}}
  <table class={{tableClassNames}}>
    <tfoot class="lt-foot">
      {{!-- Scaffolding is needed here to allow use of colspan in the footer --}}
      {{lt-scaffolding-row columns=columns}}
      {{#if hasBlock}}
        {{yield columns}}
      {{else}}
        <tr>
          {{#each columns as |column|}}
            {{component (concat "light-table/columns/" column.type) column
              table=table
              tableActions=tableActions
              extra=extra
              sortIcons=sortIcons
              resizeOnDrag=resizeOnDrag
              click=(action "onColumnClick" column)
              doubleClick=(action "onColumnDoubleClick" column)
              onColumnResized=(action "onColumnResized")
              onColumnDrag=(action "onColumnDrag")
              onColumnDrop=(action "onColumnDrop")}}
          {{/each}}
        </tr>
      {{/if}}
    </tfoot>
  </table>
{{/ember-wormhole}}
