Sha256: 05fd6ca5861c2f78914b6aa0e5517e27903b3d44c0320c9d4bbfba3309c9dfe1

Contents?: true

Size: 784 Bytes

Versions: 3

Compression:

Stored size: 784 Bytes

Contents

<%= render partial: 'kafka_command/shared/title', locals: { title: @cluster.to_human, subtitle: 'Consumers' } %>

<div class="level"a>
  <%=
    render(
      partial: 'kafka_command/shared/search_bar',
      locals: {
        resources: @groups,
        resource_name: 'consumer',
        resource_path: cluster_consumer_groups_path,
        filter_property: :group_id
      }
    )
  %>
</div>

<div class="columns">
  <div class="column is-5">
    <table class="table is-striped is-bordered is-fullwidth">
      <thead>
        <th>Group Id</th>
      </thead>
      <tbody>
        <% @groups.each do |group| %>
          <tr>
            <td><%= link_to group.group_id, consumer_groups_path(group) %>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kafka_command-0.0.3 app/views/kafka_command/consumer_groups/index.html.erb
kafka_command-0.0.2 app/views/kafka_command/consumer_groups/index.html.erb
kafka_command-0.0.1 app/views/kafka_command/consumer_groups/index.html.erb