Sha256: 4e9ed104f3b1e1cb11ec78c44e89867bfd27102598901a2bb56dc70571f33a51

Contents?: true

Size: 1.05 KB

Versions: 41

Compression:

Stored size: 1.05 KB

Contents

<table class="rails_db_data_table <%= rails_db_table_style(:table, style) %>">

  <% if header %>
    <thead class="<%= rails_db_table_style(:thead, style) %>">
      <tr class="<%= rails_db_table_style(:tr, style) %>">
        <% table.columns.each do |column| %>
          <th class="<%= rails_db_table_style(:th, style) %>"><%= column %></th>
        <% end %>
      </tr>
    </thead>
  <% end %>

  <tbody class="<%= rails_db_table_style(:tbody, style) %>">
    <% table.data.each do |record| %>
      <tr class="<%= rails_db_table_style(:tr, style)%>">
        <% table.columns.each do |column| %>
          <td class="<%= rails_db_table_style(:td, style)%>"><%= record[column.to_s] %></td>
        <% end %>
      </tr>
    <% end %>
  </tbody>

  <% if footer %>
    <tfoot class="<%= rails_db_table_style(:tfoot, style)%>">
      <tr class="<%= rails_db_table_style(:tr, style)%>">
        <% table.columns.each do |column| %>
          <th class="<%= rails_db_table_style(:th, style)%>"><%= column %></th>
        <% end %>
      </tr>
    </tfoot>
  <% end %>
</table>

Version data entries

41 entries across 41 versions & 2 rubygems

Version Path
rails_db-1.5.0 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.4.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.4.0 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.3.4 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.3.3 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.3.2 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.3.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.3 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.1.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-1.0 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.9.9 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.9 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.8 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.7.2 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.7.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.7 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.6 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.5.1 app/views/rails_db/shared/_data_table.html.erb
rails_db-0.5 app/views/rails_db/shared/_data_table.html.erb