Sha256: a7b08bcc4efae4de22f24e2409bfe720c8bb0c99b8895f665f67ef0f346544b5

Contents?: true

Size: 869 Bytes

Versions: 14

Compression:

Stored size: 869 Bytes

Contents

<%= render 'index_page_title_header' %>
<%= render 'index_page_side_title_header' %>

<%= render 'search_form' unless @search.nil? %>

<table class="table table-bordered table-hover">
  <thead>
  <tr>
    <% table_columns.each do |t| %>
        <%= index_column_builder(t, :th) do %>
            <%= index_print_column_head(t) %>
        <% end %>
    <% end %>
    <th class="index-col-btn"></th>
  </tr>
  </thead>

  <tbody>
  <% @objects.each do |r| %>
      <tr>
        <% table_columns.each do |t| %>
            <%= index_column_builder(t, :td, record: r) do %>
                <%= index_print_column(r, t) %>
            <% end %>
        <% end %>
        <th class="index-col-btn">
          <%= render 'index_buttons', record: r %>
        </th>
      </tr>
  <% end %>
  </tbody>
  <%= render 'index_tfoot' %>
</table>

<%= will_paginate_bst(@objects) %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
kono_utils-1.0.1 app/views/kono_utils/base_editing/index.html.erb
kono_utils-1.0.0 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.16 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.15 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.14 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.13 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.12 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.11 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.10 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.9 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.8 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.7 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.6 app/views/kono_utils/base_editing/index.html.erb
kono_utils-0.15.5 app/views/kono_utils/base_editing/index.html.erb