{{#if this.toolbarContainer}}
  {{#in-element this.toolbarContainer}}
    <ContainerTypeToolbar
      @reload={{this.refresh}}
      @searchValue={{this.searchValue}}
      @sendContainerToConsole={{this.sendContainerToConsole}}
    />
  {{/in-element}}
{{/if}}

<EmberTable as |t|>
  <t.head
    @columns={{this.columns}}
    @sorts={{this.sorts}}
    @onUpdateSorts={{this.updateSorts}}
    @enableReorder={{false}}
  />
  <t.body @rows={{this.rows}} as |b|>
    <b.row
      class={{if (mod b.rowMeta.index 2) "striped"}}
      data-test-instance-row as |r|
    >
      <r.cell as |name column instance|>
        {{#if instance.inspectable}}
          <div
            data-test-instance={{name}}
            class="is-link"
            role="button"
            {{on "click" (fn this.inspectInstance instance)}}
          >
            {{instance.name}}
          </div>
        {{else}}
          <span data-test-instance={{name}}>
            {{instance.name}}
          </span>
        {{/if}}
      </r.cell>
    </b.row>
  </t.body>
</EmberTable>