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-0.4 app/views/rails_db/shared/_data_table.html.erb